/// export interface LinkInterface { onClick: () => void; label: string; color?: string; ml?: number | string; fontWeight?: number; fontSize?: number; isUnderLine?: boolean; } declare const Link: ({ onClick, label, color, ml, fontWeight, fontSize, isUnderLine }: LinkInterface) => JSX.Element; export default Link;