import React from 'react';
type PageLinksContextType = {
    links: Record<string, string>;
};
export declare const PageLinksContext: React.Context<PageLinksContextType>;
declare const PageLinksProvider: ({ children }: {
    children: React.ReactNode;
}) => import("@emotion/react/jsx-runtime").JSX.Element;
export default PageLinksProvider;
