interface LoginModalProps { /** Base origin of the Manufact backend (e.g. `https://manufact.com`). */ authOrigin: string; /** Called after a successful login or when the user dismisses the dialog. */ onDismiss: () => void; /** Called when the user chooses to use their own API key instead of logging in. */ onUseApiKey?: () => void; } export declare function LoginModal({ authOrigin, onDismiss, onUseApiKey, }: LoginModalProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=LoginModal.d.ts.map