export declare type CommonFieldsProps = { id?: string; name: string; className?: string; value: string; disabled?: boolean; autoFocus?: boolean; required?: boolean; }; export declare type A11yProps = { id?: string; role?: string; title?: string; tabIndex?: number; 'aria-label'?: string; 'aria-labelledby'?: string; 'aria-describedby'?: string; 'aria-controls'?: string; }; declare type A11yKeys = keyof A11yProps; export declare function pickA11yProps(source: T): Pick; export {};