import { FC } from 'react'; import { LinkProps } from 'theme-ui'; export declare type LinkClassType = FC; export interface LinkContextProviderProps { linkClass: LinkClassType; } export declare const LinkContextProvider: FC; export declare const useGetLinkClass: () => FC;