import React from "react"; import { EmailConfig, MfwConfig, PfwConfig, SmsConfig, PwdConfig, NameConfig, OAuthConfig } from "../../../entities/Passport"; import { EntityDict } from "../../../oak-app-domain"; export default function Oauth(props: { passport: EntityDict['passport']['OpSchema'] & { stateColor: string; }; t: (k: string, params?: any) => string; changeEnabled: (enabled: boolean) => void; updateConfig: (id: string, config: SmsConfig | EmailConfig | PfwConfig | MfwConfig | PwdConfig | NameConfig | OAuthConfig, path: string, value: any, type?: string) => void; oauthOptions: { label: string; value: string; }[]; }): React.JSX.Element;