supertokens-auth-react
Version:
ReactJS SDK that provides login functionality with SuperTokens.
12 lines (11 loc) • 572 B
TypeScript
/// <reference types="react" />
import { SendRecoveryEmailScreen } from "../../../types";
import type { SendRecoveryEmailFormThemeProps } from "../../../types";
export declare const SendRecoveryEmailFormThemeInner: (
props: SendRecoveryEmailFormThemeProps & {
activeScreen: SendRecoveryEmailScreen;
setActiveScreen: React.Dispatch<React.SetStateAction<SendRecoveryEmailScreen>>;
}
) => JSX.Element | null;
declare const SendRecoveryEmailFormTheme: (props: SendRecoveryEmailFormThemeProps) => JSX.Element;
export default SendRecoveryEmailFormTheme;