import { ExcludedProps } from "@vitality-ds/system"; import { ButtonProps } from "../Button/types"; import { EmptyStateImageProps } from "./components/EmptyStateImage/types"; export declare type EmptyStateProps = ExcludedProps & { /** * Optional button and button label text. Note that some core button props are not available when used in this component. */ buttonProps?: Omit & { label: string; }; /** * Optional description text. */ description?: string; /** * If required, choose a corresponding image to present at the top of the component. * @default "folder" */ image?: EmptyStateImageProps["image"]; /** * * If required, write appropriate title text to present in the component. * @default "Nothing to display" */ title?: string; };