import React from "react"; import { FireCMSBackend } from "../../types"; export interface FireCMSCloudLoginViewProps { fireCMSBackend: FireCMSBackend; includeGoogleAdminScopes: boolean; includeLogo: boolean; includeGoogleDisclosure: boolean; includeTermsAndNewsLetter: boolean; disableMarketing?: boolean; onAnalyticsEvent?: (event: string, params?: object) => void; title?: React.ReactNode; subtitle?: React.ReactNode; } /** * Use this component to render a login view, that updates * the state of the {@link AuthController} based on the result * @group Firebase */ export declare function FireCMSCloudLoginView({ fireCMSBackend, includeGoogleAdminScopes, includeLogo, includeGoogleDisclosure, includeTermsAndNewsLetter, disableMarketing, onAnalyticsEvent, title, subtitle }: FireCMSCloudLoginViewProps): React.JSX.Element;