import * as react from 'react'; import { HTMLAttributes, ReactNode } from 'react'; import { PageShellBackground } from './page-shell.js'; import { EmptyStateIconName } from './empty-state.js'; import 'lucide-react'; interface EmptyPageProps extends Omit, 'title'> { icon?: EmptyStateIconName | ReactNode; title: ReactNode; description?: ReactNode; action?: ReactNode; secondaryAction?: ReactNode; background?: PageShellBackground; accent?: boolean; } declare const EmptyPage: react.ForwardRefExoticComponent>; export { EmptyPage, type EmptyPageProps };