import { LitElement } from "lit"; import "../../atoms/Button/button"; export declare class Card extends LitElement { static styles: import("lit").CSSResult[]; title: string; description: string; header: boolean; footer: boolean; onOk?: () => void; onCancel?: () => void; okLabel: string; cancelLabel: string; private handleOk; private handleCancel; render(): import("lit-html").TemplateResult<1>; }