export interface UseControllableStateProps { value?: T | undefined; defaultValue?: T | undefined; onChange?: ((value: T) => void) | undefined; } export declare function useControllableState(props: UseControllableStateProps): readonly [T, (value: T) => void | undefined];