import { FunctionComponent } from 'react'; import { IProps } from '../_common/props'; interface ILink extends IProps { onClick?: () => void; } declare const Link: FunctionComponent; export default Link; //# sourceMappingURL=Link.d.ts.map