export type PageInfoProps = { title?: string; icon?: string; }; /** Provides a page title and icon for the current route. */ declare const PageInfo: import("svelte").Component; type PageInfo = ReturnType; export default PageInfo;