/** * A module to replace placeholders {{var}} in the string. * Can be also used for objects within JSON.stringify replacer. * Supports type hints, see tests. */ export declare function cloneWithPlaceholders(obj: T, variables?: Record): T; export declare function stringifyWithPlaceholders(obj: object, variables?: Record): string; type Result = T extends true ? string | number | boolean : string; export declare function replacePlaceholders(value: string, variables: Record, opts?: { useTypes?: T; }): Result; export {}; //# sourceMappingURL=placeholders.d.ts.map