import * as React from 'react'; export interface CardProps { children: React.ReactNode; className?: string; style?: React.CSSProperties; shadow?: boolean; gap?: 0 | 1 | 2 | 3 | 4 | 8; } export declare function Card(props: CardProps): React.JSX.Element; export declare namespace Card { var Title: (props: CardTitleProps) => React.JSX.Element; var Body: (props: CardBodyProps) => React.JSX.Element; } interface CardTitleProps { children: React.ReactNode; className?: string; gap?: CardProps['gap']; border?: boolean; } interface CardBodyProps { children: React.ReactNode; gap?: CardProps['gap']; className?: string; } export {};