import { FireCMSBackend } from "../types"; export type CloudError = { code?: string; message: string; projectId?: string; data?: { missingPermissions?: string[]; errorDetails?: object; }; }; export declare function CloudErrorView({ error, fireCMSBackend, onFixed, onRetry, allowServiceAccountBypass }: { error: CloudError; fireCMSBackend?: FireCMSBackend; onFixed?: () => void; onRetry?: () => void; allowServiceAccountBypass?: boolean; }): import("react").JSX.Element;