import React from "react"; export interface CommonHiddenCheckableInputProps extends Omit, "value" | "size" | "type"> { /** * The id of the element that describe the input. * @deprecated This prop is deprecated, please use the `aria-describedby` attribute instead. */ ariaDescribedBy?: string; /** * Prop to specify the aria-labelledby attribute of the input. * @deprecated This prop is deprecated, please use the `aria-labelledby` attribute instead. */ ariaLabelledBy?: string; /** If true, the component will be automatically focused when rendered. */ autoFocus?: boolean; /** Checked state of the input. */ checked?: boolean; /** Input name attribute. */ name?: string; /** Value of the input. */ value?: string; } export interface HiddenCheckableInputProps extends CommonHiddenCheckableInputProps { /** HTML type attribute of the input */ type: string; /** Role attribute of the input */ role?: string; } declare const _default: React.MemoExoticComponent>>; export default _default;