import { TgdVec4 } from "../math";
import { TgdTextureCube } from "../texture";
import type { ArrayNumber4 } from "../types";
import { TgdMaterial } from "./material";
import { TgdColor } from "../color";
export type TgdMaterialMirrorOptions = {
    skybox: TgdTextureCube;
    tint?: TgdVec4 | ArrayNumber4 | TgdColor | string;
    roughness?: number;
};
export declare class TgdMaterialMirror extends TgdMaterial {
    private readonly options;
    readonly skybox: TgdTextureCube;
    roughness: number;
    readonly tint: TgdColor;
    constructor(options: TgdMaterialMirrorOptions);
}
//# sourceMappingURL=mirror.d.ts.map