import * as React from 'react'; interface ICardProps { /** @ignore */ className?: string; /** @ignore */ children?: React.ReactNode; /** * A `fluid` Card occupies all width available to it. * @default false */ fluid?: boolean; /** * A `raised` Card will have an extra-strong dropshadow. * @default false */ raised?: boolean; /** * A Card can be clickable. If an event handler is set, then the Card will * respond to mouse hover. */ onClick?: () => void; } /** * A Card groups information with an optional header and footer. * * @example * ...)}> * Card header * Meta content * * Main content of the Card goes into a Card.Content element. * * * Secondary content has the secondary attribute set. * * * * @link https://henck.github.io/typeui/?path=/story/controls-card--properties */ declare const Card: { (props: ICardProps): JSX.Element; /** A `Card` can have a `Card.Header` element. */ Header: (props: import("./Header").ICardHeaderProps) => JSX.Element; /** A `Card` can have a `Card.Meta` element. */ Meta: (props: import("./Meta").ICardMetaProps) => JSX.Element; /** A `Card` can have any number of `Card.Content` elements inside it. */ Content: (props: import("./Content").ICardContentProps) => JSX.Element; }; export { Card };