import { CSSObject } from '@xstyled/styled-components';
import { ThemeValues } from '../../theme';
export type ThemeLinks = {
    default: CSSObject;
    disabled: CSSObject;
    primary: {
        default: CSSObject;
        hover: CSSObject;
    };
    secondary: {
        default: CSSObject;
        hover: CSSObject;
    };
    withExternalLink: CSSObject;
};
export declare const getLinks: (theme: ThemeValues) => ThemeLinks;
