import React, { ReactNode } from 'react'; import { IconProps } from '../Icon/index.js'; export declare type DashedProps = React.ComponentProps<'button'> & { icon: IconProps; }; export declare type EmptyStateProps = React.ComponentProps<'div'> & { icon: IconProps | ReactNode; title: string; description?: string; }; export declare const EmptyState: { (props: EmptyStateProps): JSX.Element; Dashed: React.FC; };