import { CompileFn, FormatFn } from './default';
export type StructuredJson = Record<string, {
translation: string;
notes?: string;
context?: string;
limit?: string;
}>;
export declare const format: FormatFn<StructuredJson>;
export declare const compile: CompileFn<StructuredJson>;