type GarmentType = "tops" | "bottoms" | "one-pieces";
interface VirtualFittingRoomProps {
    garmentId: string;
    garmentImage: string;
    garmentName: string;
    garmentType: GarmentType;
    apiKey: string;
    token: string;
    widgetClasses: string;
    onClose: () => void;
}
export declare function VirtualFittingRoom({ garmentId, garmentImage, garmentName, garmentType: initialGarmentType, apiKey, token, widgetClasses, onClose, }: VirtualFittingRoomProps): import("react/jsx-runtime").JSX.Element;
export {};
