type Arrays = T extends undefined | null ? Array : T extends Function ? Array : T extends object ? Array : T extends string ? Array : T extends number ? Array : T extends boolean ? Array : T extends bigint ? Array : T extends Date ? Array : T extends Buffer ? Array : T extends any[] ? Array : T extends unknown ? Array : never; export declare const ColumnType: { String: StringConstructor; Number: NumberConstructor; Boolean: BooleanConstructor; BigInt: BigIntConstructor; Date: DateConstructor; Array: (types?: type) => Arrays; Object: ObjectConstructor; Buffer: BufferConstructor; Integer: BigIntConstructor; }; export {};