import PropTypes from 'prop-types'; export declare const descriptions: { ariaControls: string; ariaDescribedby: string; ariaDetails: string; ariaErrormessage: string; ariaLabel: string; ariaLabelledby: string; }; export declare const ariaAttributeBaseDocSettings: { control: { type: string; }; table: { type: { summary: string; }; category: string; }; }; export declare const ariaAttributeBaseArgTypes: { 'aria-controls': { control: { type: string; }; table: { type: { summary: string; }; category: string; }; description: string; }; 'aria-describedby': { control: { type: string; }; table: { type: { summary: string; }; category: string; }; description: string; }; 'aria-details': { control: { type: string; }; table: { type: { summary: string; }; category: string; }; description: string; }; 'aria-errormessage': { control: { type: string; }; table: { type: { summary: string; }; category: string; }; description: string; }; 'aria-label': { control: { type: string; }; table: { type: { summary: string; }; category: string; }; description: string; }; 'aria-labelledby': { control: { type: string; }; table: { type: { summary: string; }; category: string; }; description: string; }; }; export declare const ariaAttributesBasePropTypes: { 'aria-controls': PropTypes.Requireable; 'aria-describedby': PropTypes.Requireable; 'aria-details': PropTypes.Requireable; 'aria-errormessage': PropTypes.Requireable; 'aria-label': PropTypes.Requireable; 'aria-labelledby': PropTypes.Requireable; }; export declare const getAriaAttributeProps: (props: any) => { ariaProps: {}; nonAriaProps: { [x: number]: any; [x: symbol]: any; }; };