import type { LC, PropsWithChildren } from '@use-gpu/live'; import type { ShaderModule, ShaderSource } from '@use-gpu/shader'; declare const PRESETS: Record; export type EnvironmentProps = PropsWithChildren<{ map?: ShaderSource | null; preset?: (keyof typeof PRESETS) | 'none'; gain?: number; }>; export declare const Environment: LC; export {};