type AriaProps = { 'title'?: string; 'aria-label'?: string; 'aria-labelledby'?: string; 'aria-describedby'?: string; }; type ExtractorAriaPropsReturn = { __excludeProps: ['title', 'aria-label', 'aria-labelledby', 'aria-describedby']; extractedAriaProps: AriaProps; }; export declare function extractAriaProps(props: any): ExtractorAriaPropsReturn; export {};