import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { BusinessAppointmentSettings } from "./BusinessAppointmentSettings"; import { BusinessBookingProfileBookingPolicy } from "./BusinessBookingProfileBookingPolicy"; import { BusinessBookingProfileCustomerTimezoneChoice } from "./BusinessBookingProfileCustomerTimezoneChoice"; export declare const BusinessBookingProfile: core.serialization.ObjectSchema; export declare namespace BusinessBookingProfile { interface Raw { seller_id?: (string | null | undefined) | null; created_at?: string | null; booking_enabled?: (boolean | null | undefined) | null; customer_timezone_choice?: BusinessBookingProfileCustomerTimezoneChoice.Raw | null; booking_policy?: BusinessBookingProfileBookingPolicy.Raw | null; allow_user_cancel?: (boolean | null | undefined) | null; business_appointment_settings?: BusinessAppointmentSettings.Raw | null; support_seller_level_writes?: (boolean | null | undefined) | null; } }