import type { PushCardVariant } from './push-card.types'; export declare class PushCard { /** * Card icon */ icon?: string; /** * ARIA label for the icon * * @since 3.2.0 */ ariaLabelIcon?: string; /** * Card KPI value */ notification?: string; /** * Card heading */ heading?: string; /** * Card subheading */ subheading?: string; /** * Card variant */ variant: PushCardVariant; /** * Expand the card */ expanded: boolean; /** * If true, disables hover and active styles and changes cursor to default */ passive: boolean; render(): any; }