import { FormatHandle, Formatter, FormatType } from '../../../formatter/formatter'; import { DropTableSql } from './drop-table-sql'; import { FormatContext } from '../../../formatter/format-context'; export declare class DropTableFormatter implements FormatHandle { type: FormatType; canHandle(param: any): boolean; handle(param: DropTableSql, ctx: FormatContext, formatter: Formatter): string; }