import React from 'react'; import { FlintCardHeader as FlintCardHeaderElement } from '@getufy/flint-ui/card/flint-card-header'; /** * Card Header: the header section of a card. * * @slot avatar - Avatar or icon element. * @slot action - Action element like an icon button. * @slot (default) - Header text content. */ export interface FlintCardHeaderProps extends Omit, 'title'> { /** Plain text title. For rich content (icons, links), use the default slot instead. */ title?: string; /** Plain text subtitle. For rich content, use the `subtitle` named slot instead. */ subtitle?: string; } export declare const FlintCardHeader: React.ForwardRefExoticComponent>;