/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { OnDestroy } from '@angular/core'; import { LocalizationService } from '@progress/kendo-angular-l10n'; import { Orientation } from '../common/orientation'; import * as i0 from "@angular/core"; /** * Represents the Kendo UI Card component for Angular. * Displays content in a structured container with customizable layout and styling ([Card overview]({% slug overview_card %})). * * @example * ```html * * *
Card Title
*
* *

Card content goes here.

*
*
* ``` * @remarks * Supported children components are: {@link CardFooterComponent}, {@link CardHeaderComponent}, {@link CardActionsComponent}, {@link CardBodyComponent}. */ export declare class CardComponent implements OnDestroy { private localizationService; hostClass: boolean; get widthStyle(): string; get vertical(): boolean; get horizontal(): boolean; /** * @hidden */ direction: string; /** * Specifies the layout of the Card content. * * @default 'vertical' */ orientation: Orientation; /** * Defines the width of the Card. * * @default '285px' */ width: string; private dynamicRTLSubscription; private rtl; constructor(localizationService: LocalizationService); ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }