import { FormatHandle, Formatter, FormatType } from '../../../../formatter/formatter'; import { FormatContext } from '../../../../formatter/format-context'; import { RoundDescription } from './round-description'; export declare class RoundFormatter implements FormatHandle { type: FormatType; canHandle(param: any): boolean; handle(param: RoundDescription, ctx: FormatContext, formatter: Formatter): string; }