export declare type RangeBoundary = { bound: number; inclusive: boolean; }; export declare type AnyFunction = (args?: TArgs) => TReturn; export declare type SearchOptions = { caseSensitive: boolean; keys: string[]; };