/**
 * SSS Model
 *
 *
 *
 */
import { TypedGlNode } from './_Base';
import { NodeParamsConfig } from '../../nodes/utils/params/ParamsConfig';
import { ShadersCollectionController } from './code/utils/ShadersCollectionController';
declare class VATDataGlParamsConfig extends NodeParamsConfig {
    color: import("../../nodes/utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.COLOR>;
    thickness: import("../../nodes/utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.FLOAT>;
    power: import("../../nodes/utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.FLOAT>;
    scale: import("../../nodes/utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.FLOAT>;
    distortion: import("../../nodes/utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.FLOAT>;
    ambient: import("../../nodes/utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.FLOAT>;
    attenuation: import("../../nodes/utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.FLOAT>;
}
export declare class SSSModelGlNode extends TypedGlNode<VATDataGlParamsConfig> {
    paramsConfig: VATDataGlParamsConfig;
    static type(): string;
    initializeNode(): void;
    setLines(shaders_collection_controller: ShadersCollectionController): void;
    private _paramLineFloat;
}
export {};
