import { TsStyleThemeTypes } from '@terminus/ui/utilities'; import { TsCardComponent } from './card.component'; export declare class TsCardTitleDirective { /** * Option to add a border to the header * * @param value */ set tsTitleAccentBorder(value: boolean); /** * Define the component theme */ theme: TsStyleThemeTypes; /** * Set the card title class */ tsCardTitle: string; /** * Verify the directive is nested within a {@link TsCardComponent} * * @param parent */ constructor(parent: TsCardComponent); }