import { type AutocompleteItemType } from './components/autocomplete-item'; export declare function getLastIndexOfSubstringIgnoreCase(string: string, substring: string): number; export type BasicItem = { label?: string; id: string; tags?: string[]; items?: BasicItem[]; }; export declare const getNodePaths: >(items: Item[], id?: string, path?: Item[]) => Omit[][]; export declare function prepareTreeDataForAutocomplete>(flattenedTreeData: Item[][]): AutocompleteItemType[]; export declare function getSingleChildren>(children: Item[]): Generator; export declare function formatLargeNumber(x: string | number): string; export declare function formatBytesNumber(bytes: string | number, decimals?: number): string; export declare const tidyUrlString: (url: string) => string; //# sourceMappingURL=utils.d.ts.map