import { TableDescription } from '../../keyword/table/table-description'; export interface DropIndexSql { dropIndex: string; on: TableDescription; } export declare const isDropIndexSql: (val: any) => val is DropIndexSql;