/// interface IProps { title: string; onCancel: () => void; onSwitchMethod: () => void; hasQrCode: boolean; qrCodeAsBase64: string | undefined; description: string; switchDescription: string; canLaunch: boolean; onLaunch: () => void; logoDimensions: { width: string; height: string; }; hasError: boolean; } declare const _default: ({ title, onCancel, onSwitchMethod, hasQrCode, qrCodeAsBase64, description, switchDescription, canLaunch, onLaunch, logoDimensions, hasError, }: IProps) => JSX.Element; export default _default;