UNPKG

373 BTypeScriptView Raw
1import InternalAnchor from './Anchor';
2import AnchorLink from './AnchorLink';
3export type { AnchorProps } from './Anchor';
4export type { AnchorLinkProps } from './AnchorLink';
5type InternalAnchorType = typeof InternalAnchor;
6type CompoundedComponent = InternalAnchorType & {
7 Link: typeof AnchorLink;
8};
9declare const Anchor: CompoundedComponent;
10export default Anchor;