import { Card as CardParent } from './card'; import { CardBlock } from './card-block'; type Card = typeof CardParent & { /** * Use `Card.Block` to segment content with divider lines or to add full-bleed pictures/video * * Place as a descendant of `Card` * * @example * * Header * Content * Footer * */ Block: typeof CardBlock; }; /** * Card component to present content in a structured way. * * @example * * Header * Content * Footer * */ declare const CardComponent: Card; export type { CardProps } from './card'; export type { CardBlockProps } from './card-block'; export { CardBlock, CardComponent as Card }; //# sourceMappingURL=index.d.ts.map