import { RahaApiError } from "."; export declare const ERROR_CODE = "notFound"; export interface NotFoundErrorBody { errorCode: typeof ERROR_CODE; id: string; description?: string; } /** * Entity required to fulfill an API request not found. */ export declare class NotFoundError extends RahaApiError { readonly errorCode: typeof ERROR_CODE; constructor(id: string, description?: string); } //# sourceMappingURL=NotFoundError.d.ts.map