import { ITemplateProps } from "@leight-core/leight"; import { FC } from "react"; export interface IPlaceholderPageProps extends Partial { } /** * Placeholder view is useful when there are views loaded lazily (by a suspense), thus it's necessary * to show at least "something". */ export declare const PlaceholderPage: FC;