import React from 'react'; declare type EmptyStateAttributes = React.ComponentPropsWithoutRef<'div'>; export interface EmptyStateProps extends Omit { /** * You can add text for primary CTA */ actionText?: string; /** * You can add text for secondary CTA */ actionSecondaryText?: string; /** * You can add custom class for this component */ className?: string; /** * To make the component fully flexible */ flex?: boolean; /** * Special property for GlobalError component */ globalError?: boolean; /** * To display content horizontally */ horizontal?: boolean; /** * You can add image url (force to 4:3 ratio) */ image?: string; /** * You can add Alt Property for image */ imageAlt?: string; /** * Show loading for Primary CTA */ loading?: boolean; /** * Show loading for Secondary CTA */ loadingSecondary?: boolean; /** * You can add title to this component */ title?: string; /** * To pass callback when click Primary Button */ onActionClick?: (e: React.MouseEvent) => void; /** * To pass callback when click secondary Button */ onActionSecondaryClick?: (e: React.MouseEvent) => void; } export {};