import React from 'react'; import { BoxSystemProps } from './Box'; declare type AccessibleIconDOMProps = React.ComponentPropsWithRef<'span'>; declare type AccessibleIconSystemProps = BoxSystemProps; declare type AccessibleIconOwnProps = { children: React.ReactElement; label: string; }; export declare type AccessibleIconProps = AccessibleIconDOMProps & AccessibleIconSystemProps & AccessibleIconOwnProps & { as?: React.ElementType; }; export declare function AccessibleIcon({ children, label, ...props }: AccessibleIconProps): JSX.Element; export {};