import { CardProps } from "./Card"; import { LinkProps } from "../../link/types"; export interface ButtonCardProps extends CardProps { /** * What screenreaders read aloud for the link */ linkDescription: string; } declare const _default: ({ openInNewTab, linkDescription, url, children, ...other }: ButtonCardProps & LinkProps) => JSX.Element; export default _default;