export declare const helpers: { [key: string]: (stringValue: string) => string; }; export type InterpolationData = { [identifier: string]: string | undefined | null | number | boolean; }; export declare function interpolate(stringValue: string, interpolationData: InterpolationData): string;