import { LitElement } from 'lit'; export declare class CardBase extends LitElement { /** * The title of the card */ cardTitle: string; /** * The sub-title of the card */ subTitle: string; /** * Displays the action bar */ actionBar: boolean; /** * Displays the ripple affect in primary area */ interactive: boolean; /** * Style the card as an outline variant */ outlined: boolean; /** * Style the card 100% height */ fullHeight: boolean; render(): import("lit-html").TemplateResult<1>; } //# sourceMappingURL=card-base.d.ts.map