import React from 'react'; import type { CommonComponentProps, MarginModifierProp, ModifierClassProp } from '../types'; import type { GetRef } from '../utils/refs'; interface AttributeInputProps extends CommonComponentProps, MarginModifierProp, ModifierClassProp { 'aria-invalid'?: React.AriaAttributes['aria-invalid']; checked?: boolean; defaultChecked?: boolean; disabled?: boolean; getRef?: GetRef; id?: string; label?: React.ReactNode; name?: string; onChange?: React.ChangeEventHandler; readOnly?: boolean; required?: boolean; tabIndex?: number; value: number | string; } export declare function AttributeInput({ _modifierClass, 'aria-describedby': ariaDescribedby, 'aria-invalid': ariaInvalid, 'aria-label': ariaLabel, 'aria-labelledby': ariaLabelledby, defaultChecked, checked, disabled, getRef, id, label, margin, name, value, onChange, readOnly, required, tabIndex, ...rest }: AttributeInputProps): React.JSX.Element; export {};