import React from "react";
interface ClothSimulationProps {
    width?: number;
    height?: number;
    clothWidth?: number;
    clothHeight?: number;
    spacing?: number;
    gravity?: number;
    mouseInfluence?: number;
    mouseCut?: number;
    tearDistance?: number;
    backgroundColor?: string;
    lineColor?: string;
}
export declare const ClothSimulation: React.FC<ClothSimulationProps>;
export {};
