import { EventEmitter, OnInit } from '@angular/core'; import { ButtonI } from '../../../../interfaces/button.interface'; import { DropdownI } from '../../../../interfaces/dropdown.interface'; import * as i0 from "@angular/core"; export declare class GuestsPopupComponent implements OnInit { dropdownData: GuestsData; btn: ButtonI; ready: boolean; btnClick: EventEmitter; value: GuestsValue; readonly ADULTS = "Adults"; readonly KIDS = "Kids"; readonly BABYS = "Babys"; ngOnInit(): void; dropdownChange(field: fieldType, value: string): void; btnClicked(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export interface GuestsValue { adults?: string; kids?: string; babys?: string; } export interface GuestsData { adults: DropdownI; kids: DropdownI; babys: DropdownI; } type fieldType = 'Adults' | 'Kids' | 'Babys'; export {};