export interface CreateSchemaSql { createSchema: string; ifNotExists?: boolean; } export declare const isCreateSchemaSql: (val: any) => val is CreateSchemaSql;