import { DropIndexSql } from './drop-index-sql'; import { FormatContext, FormatHandle, Formatter, FormatType } from '../../../formatter'; export declare class DropIndexFormatter implements FormatHandle { type: FormatType[]; canHandle(param: any): boolean; handle(param: DropIndexSql, ctx: FormatContext, formatter: Formatter): string; }