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