export declare const LargeIcon: import("@emotion/styled").StyledComponent, HTMLSpanElement>, "className" | "children" | "style" | "classes" | "sx" | "color" | "fontSize" | "baseClassName"> & import("@mui/system").MUIStyledCommonProps, {}, {}>; type Props = { ssoSetupUrl?: string; }; /** * React Component that provides a mechanism for app users to configure Multi * Factor Authentication. `` must be provided above this * component in the component tree. * * #### Example * * ```js * import * as React from 'react' * import { * MfaProvider, * MultiFactorAuthentication, * } from '@oneblink/apps-react' * * function Component() { * return * } * * function App() { * return ( * * * * ) * } * * const root = document.getElementById('root') * if (root) { * ReactDOM.render(, root) * } * ``` * * @param props * @returns * @group Components */ export default function MultiFactorAuthentication({ ssoSetupUrl }: Props): import("react/jsx-runtime").JSX.Element; export {};