import { ComponentProps } from 'react'; import { ActionButtonsProps } from '../../action/ActionButtons/types'; import { ImageProps } from '../../content/Image/types'; export type EmptyStateProps = ComponentProps<'div'> & { title: string; description: string; imageProps?: ImageProps; actionButtonsProps?: ActionButtonsProps; }; //# sourceMappingURL=types.d.ts.map