import { EventEmitter } from '../../stencil-public-runtime'; import { Product } from '../../classes/product'; export declare class AppHome { currentPrice: number; currentStep: string; box: BundleBox; products: Product[]; showSummary: boolean; frequency: number; toggleBurgerMenu: EventEmitter; progressStepChanged: EventEmitter; el: HTMLElement; readonly stages: string[]; progressStepChangedHandler(step: CustomEvent): void; changeProgress(): void; boxChangedHandler(event: CustomEvent): void; productChangeHandler(event: CustomEvent): void; toggleSummaryHandler(): void; frequencyUpdateHandler(event: CustomEvent): void; componentWillLoad(): void; getProducts(): void; calculateTotal(): void; renderSummaryBar(): any; renderStatusBar(): any; render(): any; }