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