UNPKG

@apideck/react-vault

Version:

<br />

16 lines (15 loc) 748 B
import { Connection } from '../types/Connection'; import { ConnectionViewType } from '../types/ConnectionViewType'; export declare const ModalContent: ({ onClose, onConnectionChange, consumer, initialView, showLanguageSwitch, showButtonLayout, autoStartAuthorization, }: { consumer?: { image?: string | undefined; user_name?: string | undefined; account_name?: string | undefined; } | undefined; onClose: () => any; onConnectionChange?: ((connection: Connection) => any) | undefined; initialView?: ConnectionViewType | undefined; showLanguageSwitch?: boolean | undefined; showButtonLayout?: boolean | undefined; autoStartAuthorization?: boolean | undefined; }) => JSX.Element;