export interface OutOfScopeProps {
    readonly outOfScope: boolean;
    readonly justification?: string;
}
export declare class Scope {
    out: boolean;
    readonly justification?: string | undefined;
    static inScope(justification?: string): Scope;
    static outOfScope(justification?: string): Scope;
    constructor(out: boolean, justification?: string | undefined);
    /**
     * @internal
     */
    _toThreagile(): {
        out_of_scope: boolean;
        justification_out_of_scope: string | undefined;
    };
}
