import { ReportSecurityError } from "./errors.js";
export interface ResolveArtifactPathOptions {
    forWrite?: boolean;
}
export declare function resolveArtifactPath(reportRoot: string, artifactPath: string, options?: ResolveArtifactPathOptions): Promise<string>;
export declare function securityErrorResponse(error: ReportSecurityError): {
    status: number;
    body: {
        code: string;
        message: string;
    };
};
//# sourceMappingURL=paths.d.ts.map