import type { PhpAssoc, PhpRuntimeValue } from '../_helpers/_phpTypes.ts'; type SliceValue = PhpRuntimeValue; export declare function array_slice(arr: TValue[], offst: number, lgth?: number, preserveKeys?: false | undefined): TValue[]; export declare function array_slice(arr: TValue[], offst: number, lgth: number | undefined, preserveKeys: true): TValue[] | PhpAssoc; export declare function array_slice(arr: PhpAssoc, offst: number, lgth?: number, preserveKeys?: boolean): PhpAssoc; export {};