export declare const COMPONENTS_BY_GL_TYPE: {
    boolean: undefined;
    Color: string[];
    int: undefined;
    float: undefined;
    Vector2: string[];
    Vector3: string[];
    Vector4: string[];
};
export declare class ThreeToJs {
    static any(value: any): string;
    static integer(x: number | string): string;
    static bool(x: boolean | string): string;
    static valueWrap(x: string): string;
}
