import { GpuShaderDefinition } from '../../gpu/porters'; export interface ComponentProps { /** * Scale of the fabric displacement effect * * @default 10 */ intensity: number; /** * Fabric rigidity (higher = stiffer canvas, lower = stretchy silk) * * Accepts a number between 1 and 30. * @default 3 */ stiffness: number; /** * How quickly fabric motion settles * * Accepts a number between 0 and 10. * @default 3 */ damping: number; /** * Cursor influence area * * Accepts a number between 0.1 and 1.5. * @default 1 */ radius: number; edges: string; } export declare const componentDefinition: GpuShaderDefinition; export default componentDefinition; //# sourceMappingURL=index.d.ts.map