import { TgdVec4 } from "../math";
import type { ArrayNumber4 } from "../types";
import { TgdMaterial } from "./material";
export type TgdMaterialSolidOptions = Partial<{
    color: ArrayNumber4 | TgdVec4;
}>;
export declare class TgdMaterialSolid extends TgdMaterial {
    color: TgdVec4;
    constructor(options?: TgdMaterialSolidOptions);
}
//# sourceMappingURL=solid.d.ts.map