/**
 * convert polar coordinates to xyz cartesian
 *
 *
 */
import { TypedGlNode } from './_Base';
import { ShadersCollectionController } from './code/utils/ShadersCollectionController';
import { NodeParamsConfig } from '../utils/params/ParamsConfig';
declare class PolarToCartesianGlParamsConfig extends NodeParamsConfig {
    polar: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.VECTOR3>;
}
export declare class PolarToCartesianGlNode extends TypedGlNode<PolarToCartesianGlParamsConfig> {
    paramsConfig: PolarToCartesianGlParamsConfig;
    static type(): string;
    initializeNode(): void;
    setLines(shadersCollectionController: ShadersCollectionController): void;
}
export {};
