import type { FieldFilter } from "prostgles-types"; /** * Filter string array * @param {FieldFilter} fieldParams - { col1: 0, col2: 0 } | { col1: true, col2: true } | "*" | ["key1", "key2"] | [] * @param {boolean} allow_empty - allow empty select. defaults to true */ export declare const parseFieldFilter: (fieldParams: FieldFilter> | undefined, allow_empty: boolean | undefined, all_cols: AllowedKeys) => AllowedKeys | [""]; //# sourceMappingURL=parseFieldFilter.d.ts.map