import type { CSSProperties, ReactNode } from 'react'; type CardProps = { children: ReactNode; /** * Header can be a string but also a component if you need more complex header. */ header?: ReactNode; subHeader?: ReactNode; /** * active enable a primary style on Card component for when you need to highlight it. */ active?: boolean; disabled?: boolean; className?: string; 'data-testid'?: string; style?: CSSProperties; }; /** * Card component is a simple component to display content in a box with a border. */ export declare const Card: import("react").ForwardRefExoticComponent>; export {}; //# sourceMappingURL=index.d.ts.map