import type { GetListParsedStateProps } from "../utils/getListParsedState.js"; export interface UseListParsedStateProps extends GetListParsedStateProps { } /** * From the tree structure of list items we get meta information and * flatten list in right order without taking elements that hidden in expanded groups */ export declare function useListParsedState({ items, getItemId: propsGetItemId, defaultExpandedState, }: UseListParsedStateProps): import("../index.js").ParsedState & { initialState: import("../index.js").InitialListParsedState; };