import ILightBase from "./ILightBase";
import Defaults from "./utils/Defaults";
import { ExtractProps } from "./utils/extractProps";
export default interface ILight extends ILightBase {
}
export declare const lightSchema: Required<ExtractProps<ILight>>;
export declare const lightDefaults: Defaults<ILight>;
