import { ReactElement, ReactNode } from 'react'; import * as images from './images'; import { APP_MESSAGES } from './constants'; export type EmptyStateProps = { title?: ReactNode; subtitle?: ReactNode; /** * URL to an image */ image?: string; /** * ClassNames for inner components */ classes?: { root?: string; content?: string; title?: string; subtitle?: string; image?: string; }; 'data-testid'?: string; }; type EmptyStateWithProperties = ((props: EmptyStateProps) => ReactElement) & { IMAGES: typeof images; APP_MESSAGES: typeof APP_MESSAGES; }; declare const _default: EmptyStateWithProperties; export default _default; //# sourceMappingURL=EmptyState.d.ts.map