import React from 'react'; export interface UseControlledProps { controlled: T | undefined; default: T; name: string; state: string; onChange?: (newValue: T) => void; } export declare const useControlled: (props: UseControlledProps) => [T, (newValue: React.SetStateAction) => void]; //# sourceMappingURL=index.d.ts.map