UNPKG

@gravity-ui/uikit

Version:

Gravity UI base styling and components

10 lines (9 loc) 307 B
import type { ListState } from "../types.js"; export interface UseListStateProps { /** * Initial state values */ initialState?: Partial<ListState>; withExpandedState?: boolean; } export declare const useListState: ({ initialState, withExpandedState }: UseListStateProps) => ListState;