import { PaperError } from '../../cli';
export declare class ScopeNotFound extends PaperError {
    readonly scopePath?: string | undefined;
    constructor(scopePath?: string | undefined);
    report(): string;
}
