export declare const equal: (a: any, b: any) => boolean; export declare const prop: (o: Record, prop: string) => any; export declare const find: (list: E[], filterFn: (el: E, i: number) => boolean) => E; export declare const findByProp: (list: E[], property: string, value: any) => E; export declare const prettyJSON: (a: any) => string; export declare const readJSON: (path: string) => any; type Convert = { toUserInput: (input: string) => UI; }; export declare const makeInputValidator: (convert: Convert) => (input: UI) => Promise; export declare const getArrayValues: (flagInput: any, expectedLength: any, fill: any) => any; export {}; //# sourceMappingURL=helpers.d.ts.map