import type { PhpRuntimeList, PhpRuntimeValue } from '../_helpers/_phpTypes.ts'; type PadValue = PhpRuntimeValue; type NonArrayPadInput = Exclude; export declare function array_pad(input: TInput[], padSize: number, padValue: TPad): Array; export declare function array_pad(input: NonArrayPadInput, padSize: number, padValue: TPad): TPad[]; export {};