export declare const flattenDeep: (a: Array) => Array; export declare const flattenAnyIgnoreFalsy: (a: any) => Array; export declare const flattenAny: (a: any) => Array; export declare const flattenAnyIgnoreUndefined: (a: any) => Array; export declare const parseBool: (str: string) => boolean; export declare const parseBoolOptimistic: (str: string) => boolean; export declare const splitString: (n: number, intersperseWith: string, str: string) => string; export declare const findJSONFiles: (pth: string) => object; export declare const getCleanOpt: (v: string) => string; export declare const getSpreadedArray: (v: Array) => Array; export declare const wrapString: (n: number, str: string) => string;