import { FASTElement } from "@microsoft/fast-element"; /** * CardHeader * @summary A component for card headers, supporting a flexible slot-based layout for customization. * * @example * ```html * *
Logo
* Header Image *

Main Title

* Subtitle Text * Action Button *
Additional Info
*
* ``` * * @slot start - Slot for content positioned at the start of the header. * @slot image - Slot for an image within the header. * @slot header - Slot for the main header content. * @slot subtitle - Slot for the subtitle text. * @slot action - Slot for action elements, typically buttons or links. * @slot end - Slot for content positioned at the end of the header. * @slot default - Default slot for card header content. * * @csspart image - The image container within the header. * @csspart header - The main header container. * @csspart row - A row within the header for layout. * * @extends FASTElement * @tagname fabric-card-header * @public */ export declare class CardHeader extends FASTElement { } //# sourceMappingURL=card-header.d.ts.map