import { UseFormReturn } from "react-hook-form"; import { BundleFormData } from "../schemas/bundleSchema"; interface UseBundleFormSyncProps { selectedOptions: BundleFormData; updateUrlOnChange?: boolean; isInitialized: boolean; form?: UseFormReturn; configuredBundle?: any; } export declare function useBundleFormSync({ selectedOptions, updateUrlOnChange, isInitialized, form, configuredBundle, }: UseBundleFormSyncProps): void; export {};