export interface UseControlledProps { controlledValue: T | undefined; defaultValue: T | undefined; } export declare function useControlled({ controlledValue, defaultValue, }: UseControlledProps): [T | undefined, (state: T) => void]; //# sourceMappingURL=use-controlled.d.ts.map