import IObjectManager from "./IObjectManager";
import Defaults from "./utils/Defaults";
import { ExtractProps } from "./utils/extractProps";
import Nullable from "./utils/Nullable";
export default interface ILightBase extends IObjectManager {
    color: string;
    intensity: number;
    shadowResolution: Nullable<number>;
    shadowBias: Nullable<number>;
    helper: boolean;
}
export declare const lightBaseSchema: Required<ExtractProps<ILightBase>>;
export declare const lightBaseDefaults: Defaults<ILightBase>;
