import { type BlendMode, type PropDriver, type TransformConfig, type BoundingBoxConfig, type LayoutConfig } from '../../core'; import { type ComponentProps } from '../../core/shaders/IsometricCubes'; /** * Define component props including blend mode, opacity, visibility, masking, and transformation */ interface ExtendedComponentProps extends Partial { cells?: ComponentProps['cells'] | PropDriver; thickness?: ComponentProps['thickness'] | PropDriver; rotation?: ComponentProps['rotation'] | PropDriver; softness?: ComponentProps['softness'] | PropDriver; colorVariation?: ComponentProps['colorVariation'] | 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 IsometricCubes: import("svelte").Component; type IsometricCubes = ReturnType; export default IsometricCubes;