import React from 'react'; import Anchor, { AnchorProps, AnchorState } from '.'; export type AnchorContextType = Pick & Pick & Pick & { onClick: Anchor['handleClick']; }; declare const AnchorContext: React.Context; export default AnchorContext;