import { default as React } from 'react'; import { IconColorList, IconStringList } from '../Icons/Icon.models'; import { ButtonProps } from '../Button/Button.models'; export type EmptyStateProps = { /** Text to display in bold. */ primaryText: string; /** Optional secondary text beneath `primaryText`. */ secondaryText?: string; /** Optional icon to display at the top. */ icon?: IconStringList; /** Optional button to display at bottom. */ buttonProps?: ButtonProps; /** Optional prop to set the color of the icon */ iconColor?: IconColorList; /** Optional prop to add a test id to the EmptyState for QA testing */ qaTestId?: string; }; declare const EmptyState: ({ primaryText, secondaryText, icon, buttonProps, iconColor, qaTestId, }: EmptyStateProps) => React.JSX.Element; export default EmptyState;