import './link.styles.scss'; interface IProps { id?: string; onClick?: () => void; children?: JSX.Element | JSX.Element[] | string; fontSize?: string; style?: any; } export declare const Link: ({ onClick, children, fontSize, style, id }: IProps) => JSX.Element; export {};