@brightlayer-ui/react-native-auth-workflow
Version:
Re-usable workflow components for Authentication and Registration within Eaton applications.
14 lines (13 loc) • 486 B
TypeScript
/**
* @packageDocumentation
* @module AuthContextProvider
*/
import React from 'react';
import { AuthContextProviderProps } from './types';
/**
* AuthContextProvider allow you to access shared data / configuration / API definition for authentication screens
* @param {AuthContextProviderProps} props - props for Auth Context Provider
*/
export declare const AuthContextProvider: React.FC<React.PropsWithChildren<AuthContextProviderProps & {
PasswordDialog?: JSX.Element;
}>>;