import { BaseComponent } from "$lib";
declare class CardHeader extends BaseComponent {
    props: any;
    constructor();
    static get observedAttributes(): string[];
    attributeChangedCallback(name: string, oldValue: string | null, newValue: string | null): void;
    connectedCallback(): void;
    render(): void;
}
export default CardHeader;
