import { ForbiddenError } from "./ForbiddenError";
type RefNotFoundErrorAPIResponse = {
    type: "api_notfound_error";
    message: string;
};
export declare class RefNotFoundError<TResponse = RefNotFoundErrorAPIResponse> extends ForbiddenError<TResponse> {
}
export {};
