type ReplaceOptions = { input: string; target: string; replacement: string; }; export declare function replaceExactMatch({ input, target, replacement }: ReplaceOptions): { result: string; count: number; }; export {};