import { CommonProps } from '../../typings/PCRCommonProps'; /** * A generic way to setup controlled components by * removing state hook return results, setting `checked`, * and `value` props too. */ export declare const useControlled: >(props: P) => { checked: boolean | undefined; value: string | number | readonly string[] | undefined; state: S | undefined; } & Omit; //# sourceMappingURL=useControlled.d.ts.map