export interface AutoSqlPreSchema {
    fields: {
        size: number;
        type: string;
        name: string;
        comment: string;
    }[];
}
export declare function detectTypes(autoSql: AutoSqlPreSchema): {
    fields: {
        isArray: boolean | 0;
        arrayIsNumeric: boolean | 0;
        isNumeric: boolean;
        size: number;
        type: string;
        name: string;
        comment: string;
    }[];
};
export type AutoSqlSchema = ReturnType<typeof detectTypes>;
