@sonarsource/gatsby-theme-marketing
Version:
Gatsby theme for Sonar projects
10 lines (9 loc) • 342 B
TypeScript
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;