import React from 'react'; /** @public */ export type EmptyStateClassKey = 'root' | 'action' | 'imageContainer'; type Props = { title: string; description?: string | JSX.Element; missing: 'field' | 'info' | 'content' | 'data' | { customImage: JSX.Element; }; action?: JSX.Element; }; /** * Various placeholder views for empty state pages * * @public * */ export declare function EmptyState(props: Props): React.JSX.Element; export {};