export interface CreateTableOptions { replace?: boolean; temp?: boolean; view?: boolean; } export declare function createTable(name: string, query: string, { replace, temp, view }?: CreateTableOptions): string; export declare function createSchema(name: string, { strict }?: { strict?: boolean | undefined; }): string; //# sourceMappingURL=create.d.ts.map