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