import * as i0 from '@angular/core'; import { OnInit, OnDestroy } from '@angular/core'; declare class AccountCardComponent implements OnInit, OnDestroy { name?: string; balance?: number; currency?: string; number?: string; icon: string; iconAriaLabel: string; selectable?: boolean; selected?: boolean; selectedWithCheckIcon?: boolean; ngOnInit(): void; ngOnDestroy(): void; onCardClick(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } declare class AccountCardSkeletonComponent { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } interface Account { name: string; balance: number; currency: string; number: string; } export { AccountCardComponent, AccountCardSkeletonComponent }; export type { Account };