export declare const OPERATOR_PROFILE_SETUP_STEP_ID = "@voyant-travel/operator-settings#setup.business-profile"; declare const fields: readonly ["name", "legalName", "vatId", "registrationNumber", "address", "phone", "email", "website"]; type OperatorProfileSetupField = (typeof fields)[number]; export type OperatorProfileSetupPrefill = Partial>; export declare function parseOperatorProfileSetupPrefill(value: unknown): OperatorProfileSetupPrefill; export declare function mergeOperatorProfileSetupPrefill>(profile: T, value: unknown): T & OperatorProfileSetupPrefill; export {};