import type { PhpAssoc } from '../_helpers/_phpTypes.ts'; type ColumnRow = PhpAssoc; type ColumnInput = ColumnRow[] | PhpAssoc>; type ColumnOutput = PhpAssoc | undefined>; export declare function array_column(input: ColumnInput, columnKey: string | number | null, indexKey?: string | number | null): ColumnOutput; export {};