import { FC, PropsWithChildren } from "react"; export declare type IEmptyPageProps = PropsWithChildren<{ /** * If provided, page title will be updated (tab name). Must be explicitly provided to change a title. */ title?: string; /** * Is the given view in a "fullscreen" mode - means menu is disabled, page header * is displayed. * * Defaults to `false`. */ fullwidth?: boolean; /** * Should the sider be collapsed? */ collapsed?: boolean; /** * Restore the original fullscreen mode when a view is left. * * Defaults to `true`. */ restore?: boolean; /** * Initial blocking state of a view; when true, view shows a loader. * * Defaults to `false`. */ blocked?: boolean; /** * Selected menu items. */ menuSelection?: string[]; }>; /** * Quite simple empty page without any additional features. */ export declare const EmptyPage: FC;