import { BoxProps, HeadingProps } from 'grommet'; import { ICardProps, ICardTitleProps, ICardContentProps, ICardActionsProps } from './CardProps'; declare type CardProps = ICardProps & BoxProps; /** * A Card-type container, all props of Box apply
*/ export declare const Card: { ({ children, ...rest }: CardProps): JSX.Element; displayName: string; defaultProps: { align: string; border: string; elevation: string; round: string; flex: boolean; gap: string; fill: string; background: string; }; CardActions: { ({ children, pad, ...rest }: ICardActionsProps & BoxProps): JSX.Element; displayName: string; }; CardTitle: { ({ children, color, textAlign, truncate, level, strong, responsive, ...rest }: ICardTitleProps & BoxProps & HeadingProps): JSX.Element; displayName: string; }; CardContent: { ({ children, pad, ...rest }: ICardContentProps & BoxProps): JSX.Element; displayName: string; }; }; /** * Card Actions to be placed at the bottom of the Card */ export declare const CardActions: { ({ children, pad, ...rest }: ICardActionsProps & BoxProps): JSX.Element; displayName: string; }; /** * Card Title display the card title */ export declare const CardTitle: { ({ children, color, textAlign, truncate, level, strong, responsive, ...rest }: ICardTitleProps & BoxProps & HeadingProps): JSX.Element; displayName: string; }; /** * Card Content */ export declare const CardContent: { ({ children, pad, ...rest }: ICardContentProps & BoxProps): JSX.Element; displayName: string; }; export {};