import { TestableLitElement } from '../../utils/components/testable-lit-element/testable-lit-element'; export declare class NjcCard extends TestableLitElement { static styles: import('lit').CSSResult[]; /** * @description The title for the card * @property {string} title */ title: string; /** * @description The subtitle for the card * @property {string} subtitle */ subtitle: string; /** * @description If the card should contain a box shadow * @property {boolean} elevated */ elevated: boolean; /** * @description If the card should contain a border * @property {boolean} outlined */ outlined: boolean; /** * @description Sets whether the display card shows the skeleton loaders * @property {boolean} skeleton */ skeleton: boolean; /** * @description Sets whether the card is disabled * @property {boolean} disabled */ disabled: boolean; }