import { TableDescription } from '../../keyword/table/table-description'; export interface DropViewSql { dropView: TableDescription; ifExists?: boolean; } export declare const isDropViewSql: (val: any) => val is DropViewSql;