import type { Type } from '../../../dto/types/type';
import type { Result } from './result';
export declare class RedundantTypeError implements Result {
    private readonly redundantType;
    readonly isError = true;
    constructor(redundantType: Type[]);
    getMessage(): string;
}
//# sourceMappingURL=redundantTypeError.d.ts.map