import React from 'react'; import { MarginProps } from 'styled-system'; interface AnchorProps extends Omit, 'href'> { to: string; } interface LinkStyleProps extends MarginProps { variant?: 'standard' | 'dark'; } export interface LinkProps extends AnchorProps, LinkStyleProps { } export declare const Link: import("styled-components").StyledComponent>, import("styled-components").DefaultTheme, LinkStyleProps, never>; export default Link;