import { IconType } from '../../atoms/Icon/types'; export declare const linkVariants: (props?: ({ variant?: "neutral" | "link" | null | undefined; iconPosition?: "left" | "right" | null | undefined; isDisabled?: boolean | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export type LinkProps = { variant?: 'link' | 'neutral'; isDisabled?: boolean; iconPosition?: 'left' | 'right'; Icon?: IconType; text?: string; href?: string; onClick?: () => void; }; //# sourceMappingURL=types.d.ts.map