import { type BlendMode, type PropDriver, type TransformConfig, type BoundingBoxConfig, type LayoutConfig } from '../../core'; import { type ComponentProps } from '../../core/shaders/DataMosh'; /** * Define component props including blend mode, opacity, visibility, masking, and transformation */ interface ExtendedComponentProps extends Partial { intensity?: ComponentProps['intensity'] | PropDriver; drift?: ComponentProps['drift'] | PropDriver; churn?: ComponentProps['churn'] | PropDriver; blend?: ComponentProps['blend'] | PropDriver; seed?: ComponentProps['seed'] | PropDriver; blendMode?: BlendMode; opacity?: number; visible?: boolean; id?: string; maskSource?: string; maskType?: string; renderOrder?: number; transform?: Partial; boundingBox?: Partial; flow?: LayoutConfig; absolute?: boolean; children?: import('svelte').Snippet; } declare const DataMosh: import("svelte").Component; type DataMosh = ReturnType; export default DataMosh;