import { GpuShaderDefinition } from '../../gpu/porters'; import { transformPosition } from '../../utilities/transformations'; export interface ComponentProps { center: Parameters[0]; /** * The intensity of the stretch effect * * @default 1 */ strength: number; /** * The direction of the stretch in degrees * * @default 0 */ angle: number; /** * Controls the sharpness of the transition (0 = sharp edge, 1 = gradual transition) * * @default 0 */ falloff: number; edges: string; } export declare const componentDefinition: GpuShaderDefinition; export default componentDefinition; //# sourceMappingURL=index.d.ts.map