import type { PhpAssoc, PhpRuntimeValue } from '../_helpers/_phpTypes.ts';
type StrtrValue = PhpRuntimeValue;
type ReplacementMap = PhpAssoc<StrtrValue>;
export declare function strtr(str: string, trFrom: string | ReplacementMap | string[], trTo?: string | StrtrValue[]): string;
export {};
