import React from 'react'; export interface Link { label: string | undefined; url: string; } export interface ContextValue { links: React.RefObject>; addLink: (label: string | undefined, url: string) => string; } export declare const LinksContext: React.Context;