import type { PhpAssoc, PhpRuntimeValue } from '../_helpers/_phpTypes.ts'; type ExplodeValue = PhpRuntimeValue; type KeyedValues = PhpAssoc; export declare function explode(...args: [string | boolean | null | undefined, string | KeyedValues | (() => ExplodeValue) | undefined, number?]): string[] | false | { 0: string; } | null; export {};