import type { NormalizedResult } from "src/types"; type NormalizeBoolean = (input: "" | boolean) => boolean; type NormalizeArray = (raw: Array) => NormalizedResult; type Resolve = (data: any) => void; type Reject = (arg: any) => void; type Response = { body: any; }; type Error = { status: any; }; type DefaultNormalize = (raw: Array, field: string) => NormalizedResult; declare const normalize: { normalizeArrayByField: DefaultNormalize; normalizeSelectNumeric: (raw: string) => number | ""; withPromiseCallback: (resolve: Resolve, reject: Reject) => (error: Error, response: Response) => void; normalizeArray: NormalizeArray; normalizeBoolean: NormalizeBoolean; }; export default normalize;