/**
 * Extract variables (placeholders) from a JSON object or string.
 * Placeholders are expected to be in the format {{variable}}.
 */
export declare const extractVariablesFromJson: (json: any) => Set<string>;
