import { RahaApiError } from "."; export declare const ERROR_CODE = "notFound"; export interface MissingParamsErrorBody { errorCode: typeof ERROR_CODE; missingParams: string[]; } /** * Represents missing parameters in the body of an API request. */ export declare class MissingParamsError extends RahaApiError { readonly errorCode: typeof ERROR_CODE; constructor(missingParams: string[]); } //# sourceMappingURL=MissingParamsError.d.ts.map