import React from 'react'; import type { StyleProp, ViewStyle } from 'react-native'; import type { PresetConfig } from '../types'; export interface NativeCanvasProps { preset: PresetConfig; count?: number; x?: number; y?: number; loop?: boolean; emitInterval?: number; /** Semantic stacking hint. `style.zIndex` overrides this when provided. */ layer?: 'background' | 'foreground'; /** Advanced host-view override. Can be used to customize zIndex, opacity or layout. */ style?: StyleProp; } export declare function NativeParticleSystem({ preset, count, x, y, loop, emitInterval, layer, style, }: NativeCanvasProps): React.JSX.Element; //# sourceMappingURL=NativeCanvasAdapter.d.ts.map