import React from 'react'; import { CardSystemProps } from './Card'; import { StyleConfig } from '../utils/styleConfig'; export declare type CardLinkParts = { card: 'hover' | 'focus' | 'active'; }; declare type CardLinkDOMProps = React.ComponentPropsWithRef<'a'>; declare type CardLinkStyleConfigProp = { styleConfig?: StyleConfig; }; declare type CardLinkSystemProps = CardSystemProps; export declare type CardLinkProps = CardLinkDOMProps & CardLinkStyleConfigProp & CardLinkSystemProps & { as?: React.ElementType; }; export declare const CardLink: React.ForwardRefExoticComponent & React.RefAttributes>; export {};