interface UseControllableStateOptions { defaultValue: T; onChange?: (value: T) => void; value?: T; } export declare function useControllableState({ defaultValue, onChange, value, }: UseControllableStateOptions): readonly [T, (nextValue: T) => void]; export {};