import React from 'react'; import { Border, Color, Variant } from './types'; export interface CardProps { variant?: Variant; color?: Color; enableBorder?: boolean; border?: Border; children: React.ReactNode; } declare const _default: React.ForwardRefExoticComponent> & { Header: import("styled-components").StyledComponent<"div", any, { headerVariant?: Variant; enableBorder?: boolean; }, never>; Body: ({ children, bodyVariant }: import("./components/Body/Body").Props) => React.JSX.Element; Footer: import("styled-components").StyledComponent<"div", any, { footerVariant?: Variant; }, never>; }; export default _default;