import type { Ref, ReactNode, MouseEventHandler } from 'react'; import type { ForwardRefForwardPropsComponent, BaseProps, AsProp, TestIdProp } from '../../types'; export interface CardProps extends BaseProps, AsProp, TestIdProp { /** Components and content for the Card. */ children?: ReactNode; /** * Enables the focus, hover, and active styles. * @default false * @deprecated */ interactive?: boolean; /** Callback for onClick event. */ onClick?: MouseEventHandler; /** Ref forwarded to the wrapping element. */ ref?: Ref; } export declare const StyledCard: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute, HTMLElement>, Partial>> & string; declare const Card: ForwardRefForwardPropsComponent; export default Card; //# sourceMappingURL=Card.d.ts.map