import { TestableLitElement } from '../../utils/components/testable-lit-element/testable-lit-element'; export type NJC_TEXT_DETAIL_SIZES = null | 'small' | 'medium' | 'large'; declare const NjcTextDetail_base: typeof TestableLitElement; export declare class NjcTextDetail extends NjcTextDetail_base { /** * @description The text detail title * @property {string} title */ title: string; /** * @description The text detail subtitle * @property {string} subtitle */ subtitle: string; /** * @description The size of the text detail * @property {NJC_TEXT_DETAIL_SIZES} size */ size: NJC_TEXT_DETAIL_SIZES; /** * @description The name of the icon to be displayed in the subtitle * @property {string} titleIcon */ subtitleIcon: string; /** * @description Sets whether the text detail shows the skeleton loader * @property {boolean} skeleton */ skeleton: boolean; /** * @description If true, the text detail will be displayed vertically * @property {boolean} vertical */ vertical: boolean; /** * @description If true, the title and content positions will be inverted * @property {boolean} invertTitle */ invertTitle: boolean; } export {};