export declare const Constants: { /** * An existing file was the target of an operation that required that the target not exist */ EEXIST_ERROR: string; /** * No such file or directory: Commonly raised by fs operations to indicate that a component * of the specified pathname does not exist. No entity (file or directory) could be found * by the given path */ ENOENT_ERROR: string; /** * Operation not permitted. An attempt was made to perform an operation that requires * elevated privileges. */ EPERM_ERROR: string; /** * Test data used to verify underlying persistence mechanism */ PERSISTENCE_TEST_DATA: string; }; export declare const ErrorCodes: { readonly INTERATION_REQUIRED_ERROR_CODE: "interaction_required"; readonly SERVER_UNAVAILABLE: "server_unavailable"; readonly UNKNOWN: "unknown_error"; }; export type ErrorCodes = (typeof ErrorCodes)[keyof typeof ErrorCodes]; //# sourceMappingURL=Constants.d.ts.map