import { LoyaltyTableI } from '../../../interfaces/core/loyalty-table.interface'; import * as i0 from "@angular/core"; export declare class LoyaltyTableComponent implements LoyaltyTableI { title?: string; subtitle?: string; subtitleIcon?: string; subtitleIconPosition: 'left' | 'right'; tableTitle?: string; tableSubtitle?: string; conditions?: string; additionalInfo?: string; additionalInfoIcon?: string; planIconCollapse: string; plans: LoyaltyTablePlans; categories: LoyaltyTableCategory[]; collapsed: { silver: boolean; gold: boolean; platinum: boolean; }; toggleCollapse(planName: 'silver' | 'gold' | 'platinum'): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export interface LoyaltyTablePlan { title: string; subtitle: string; } export interface LoyaltyTablePlans { silver?: LoyaltyTablePlan; gold?: LoyaltyTablePlan; platinum?: LoyaltyTablePlan; } export interface LoyaltyTableCategory { title: string; silver?: LoyaltyPlanValue; gold?: LoyaltyPlanValue; platinum?: LoyaltyPlanValue; } export interface LoyaltyPlanValue { icon?: string; value?: string; }