import { TinyError } from '@konker.dev/tiny-error-fp'; export declare const ERROR_TAG: "MomentoClientError"; export type ERROR_TAG = typeof ERROR_TAG; export type MomentoClientError = TinyError; export declare const MomentoClientError: (name?: string, message?: string, statusCode?: number, codeTag?: string, cause?: unknown, internal?: boolean, stack?: string) => TinyError<"MomentoClientError">; export declare const toMomentoClientError: (x: unknown, name?: string, message?: string, statusCode?: number, codeTag?: string, cause?: unknown, internal?: boolean) => TinyError<"MomentoClientError">; export declare const isMomentoClientError: (x: unknown) => x is TinyError<"MomentoClientError">; //# sourceMappingURL=error.d.ts.map