import { ParentProductInfo, ChildProduct } from "../use-parent-products"; /** * Helper function to find option IDs for a given child product ID in the variation matrix */ export declare const getOptionsFromSkuId: (skuId: string, entry: any, options?: string[]) => string[] | undefined; /** * Find the matching child product based on selected variations */ export declare const findMatchingVariant: (selections: Record, parentInfo: ParentProductInfo) => ChildProduct | null;