import React from 'react'; interface CustomSvgProps { size?: number; customColor?: string; } interface IconProps extends React.SVGProps, CustomSvgProps { } export declare const EmptyTable: (props: IconProps) => React.JSX.Element; export {};