import * as React from "react";
interface TryOnButtonProps {
dressId: string;
dressImage: string;
dressName: string;
className: string;
children: any;
widgetClasses: string;
}
declare const TryOnButton: React.FC<TryOnButtonProps>;
export default TryOnButton;