@brightlayer-ui/react-native-auth-workflow
Version:
Re-usable workflow components for Authentication and Registration within Eaton applications.
12 lines (11 loc) • 573 B
TypeScript
/**
* @packageDocumentation
* @module RegistrationWorkflowContextProvider
*/
import React from 'react';
import { RegistrationWorkflowContextProps } from './types.js';
/**
* RegistrationWorkflowContextProvider allows you to access data such as the current screen, the total number of screens and all screens data throughout registration
* @param {RegistrationWorkflowContextProps} props - props for Registration Workflow Context Provider
*/
export declare const RegistrationWorkflowContextProvider: React.FC<React.PropsWithChildren<RegistrationWorkflowContextProps>>;