import React from "react"; import { type CardAction } from "./CardHeader/CardHeader"; import type { HeaderProps } from "../Typography/Header/Header"; export type CardProps = { /** Specify title displayed in Header */ title?: string; /** Specify what the html element of of the card header should be */ titleAs?: HeaderProps["as"]; action?: CardAction; overflow?: "auto" | "hidden" | "visible"; squareCorners?: boolean; outlined?: boolean; id?: string; children?: React.ReactNode; "data-e2e-test-id"?: string; }; export declare function Card({ title, titleAs, action, children, overflow, squareCorners, outlined, id, "data-e2e-test-id": dataE2eTestId, ...ariaAttributes }: CardProps): React.ReactElement;