import ILightBase from "./ILightBase";
import Defaults from "./utils/Defaults";
import { ExtractProps } from "./utils/extractProps";
export default interface IPointLight extends ILightBase {
    decay: number;
    distance: number;
}
export declare const pointLightSchema: Required<ExtractProps<IPointLight>>;
export declare const pointLightDefaults: Defaults<IPointLight>;
