import React from 'react'; export interface AnchorProps extends React.HTMLAttributes { children?: React.ReactNode; /** * Set the before component of anchor */ before?: React.ReactNode; /** * Set the after component of anchor */ after?: React.ReactNode; /** * Disabled state of anchor */ disabled?: boolean; /** * Set the size of anchor */ size?: 'medium' | 'small' | 'large'; } export declare const Anchor: React.FC;