import { CompanyEntity, ServiceEntity, StaffEntity } from "@agendize/js-agendize-api"; import { Ref } from "vue"; export interface ServiceDetailsViewModelType { labelLocation: Ref; serviceLoading: Ref; service: Ref; serviceGroups: Ref; serviceDetailsDisplay: Ref; serviceContentDetails: Ref<{ label: string; classIcon: string; }[]>; servicePrice: Ref; serviceDuration: Ref; servicePictureUrl: Ref; serviceDescription: Ref; serviceCancelDelay: Ref; serviceLocations: Ref<{ key: string; label: string; tooltip: string; }[]>; staffSelectionEnabled: Ref; staffLoading: Ref; staffs: Ref; randomStaffOption: Ref; } export declare function serviceDetailsViewModel(emitter: any, company: CompanyEntity, serviceId: string): ServiceDetailsViewModelType; //# sourceMappingURL=serviceDetailsViewModel.d.ts.map