import { ReactNode } from 'react'; interface StatePageProps { header?: string; subheader?: ReactNode; type: 'error' | 'empty' | 'info' | 'notfound'; children?: ReactNode; actions?: ReactNode; } export declare function StatePage({ header, subheader, type, children, actions, }: StatePageProps): ReactNode; export {};