import * as React from "react"; import { CardProps } from "./Card"; import { LinkProps } from "../../link/types"; export interface ButtonCardProps extends CardProps { /** * What screenreaders read aloud for the link */ linkDescription: string; /** * Human-readable selector used for writing tests */ "data-cy"?: string; } declare const _default: ({ openInNewTab, linkDescription, url, children, className, "data-cy": dataCy, ...other }: ButtonCardProps & LinkProps) => React.JSX.Element; export default _default;