import { default as React, PropsWithChildren, ReactNode } from 'react'; type Variant = 'default' | 'rounded'; type BackgroundColor = 'default' | 'light'; export interface EmptyStateProps { /** * ID to find this component in testing tools (e.g.: cypress, testing library, and jest). */ testId?: string; /** * The EmptyState component's title. */ title?: string; /** * A React component that will be rendered as an icon on the Title. */ titleIcon?: ReactNode; /** * Specifies the component border variant. */ variant?: Variant; /** * Specifies the component background color. */ bkgColor?: BackgroundColor; } declare function EmptyState({ testId, title, titleIcon, variant, bkgColor, children, ...otherProps }: PropsWithChildren): React.JSX.Element; export default EmptyState; //# sourceMappingURL=EmptyState.d.ts.map