import IMeshAppendable from "./IMeshAppendable"; import Choices from "./utils/Choices"; import { ExtractProps } from "./utils/extractProps"; import Nullable from "./utils/Nullable"; export declare const environmentPreset: { studio: string; day: string; night: string; }; export type EnvironmentPreset = keyof typeof environmentPreset; export default interface IEnvironment extends IMeshAppendable { texture: Nullable; } export declare const environmentSchema: Required>; export declare const environmentChoices: Choices; export declare const environmentDefaults: Partial>;