import { default as React } from 'react'; interface IconProps { size?: string | number; color?: string; } interface TableIconProps { children: React.ReactElement; 'aria-label'?: string; } export declare function TableIcon({ children, 'aria-label': ariaLabel }: TableIconProps): import("react/jsx-runtime").JSX.Element; export {};