import { GlLocatable, GlType } from "./primitives";
export declare enum UniformType {
    float = "float",
    int = "int"
}
export declare class Uniform implements GlLocatable {
    length: number;
    type: UniformType;
    glType: GlType;
    constructor(length?: number, type?: UniformType);
}
