import { type PageContextProps } from "../contexts/Page"; /** * `usePage()` * * Hook to get some page properties. * @see [Documentation](https://www.notion.so/griddoio/usePage-2a781f907cf74b4f8df6a4fbe0d8f399) * * @example * const { title } = usePage() */ declare function usePage(): PageContextProps; export { usePage };