/** Machine-readable error codes for payload viewer store operations. */ export type PayloadViewerStoreErrorCodeV1 = 'artifact-missing' | 'catalog-expired' | 'catalog-not-loaded' | 'catalog-version-not-found' | 'fetch-failed' | 'host-api-incompatible' | 'invalid-catalog' | 'invalid-manifest' | 'invalid-operation' | 'permission-reapproval-required' | 'resource-mismatch' | 'resource-too-large' | 'revoked' | 'signature-invalid' | 'unsupported-permission'; /** Error raised by the payload viewer store with a typed error code. */ export declare class PayloadViewerStoreErrorV1 extends Error { readonly code: PayloadViewerStoreErrorCodeV1; constructor(code: PayloadViewerStoreErrorCodeV1, message: string, options?: ErrorOptions); } //# sourceMappingURL=errors.d.ts.map