interface UseControlledProps { /** * Holds the component value when it's controlled. */ controlled: T | undefined; /** * The default value when uncontrolled. */ default: T | undefined; } export declare const useControlled: (props: UseControlledProps) => [T | undefined, (newValue: T | undefined) => void]; export {};