import { QueryDefinition, Table } from '../../source'; export declare function DROP_TABLE(config: DropTableConfig): QueryDefinition, boolean, any>>>>; export interface DropTableConfig { ifExists?: boolean; names: (string | Table)[]; constraint?: 'CASCADE' | 'RESTRICT'; } export declare const stringifyDropTableConfig: (config: DropTableConfig) => import("../../template").Template;