interface IReplacePlaceholdersInput {
    msg: string;
    placeholders?: {
        [key: string]: any;
    };
}
export default function replacePlaceholders({ msg, placeholders }: IReplacePlaceholdersInput): string;
export {};
