import type { FormValues } from '@wix/forms/components'; import type { V2Location as Location } from '@wix/auto_sdk_bookings_services'; import type { ServiceSelection, ServiceSelectionTimeSlot, ExtendedResource } from '../../services/booking/booking.js'; export declare function createMockResource(overrides?: Partial): ExtendedResource; export declare function createMockLocation(overrides?: Partial): Location; export declare const mockResource: ExtendedResource; export declare const mockResourceTwo: ExtendedResource; export declare const mockLocation: Location; export declare const mockLocationTwo: Location; export declare const mockTimezone = "America/New_York"; export declare const mockTimeSlot: ServiceSelectionTimeSlot; export declare function createMockServiceSelectionTimeSlot(overrides?: Partial): ServiceSelectionTimeSlot; /** * Creates a mock ServiceSelection with sensible defaults */ export declare function createMockServiceSelection(overrides?: Partial): ServiceSelection; export declare const mockServiceSelection: ServiceSelection; export declare const mockServiceSelectionWithoutTimeSlot: ServiceSelection; export declare function createMockFormSubmission(overrides?: Partial): FormValues; export declare const mockFormSubmission: FormValues;