import { FunctionComponent, ForwardRefExoticComponent, AnchorHTMLAttributes, RefAttributes, ReactNode } from 'react'; export type LinkComponent = ForwardRefExoticComponent, 'ref'> & RefAttributes>; type Context = { linkComponent: LinkComponent; children?: ReactNode; }; export declare const PoutineProvider: FunctionComponent; export declare const usePoutine: () => Context; export {};