import React from 'react'; declare type SubstituteVars = Record; export declare function stringSubstitute(str: string, vars?: SubstituteVars, asTokens?: boolean): string | string[]; export declare const StringSubstitute: React.FC<{ str: string; vars?: SubstituteVars; }>; export {};