import React from "react"; export declare type PageProps = JSX.IntrinsicElements["li"] & { /** The page's link. This is used to allow the user to open the page in a new browser tab. */ href?: string; /** Anchor element properties */ anchorProps?: JSX.IntrinsicElements["a"]; }; export declare const Page: React.FC;