import type { AuthType, BlockTypes } from '@corbado/shared-ui'; import type { FC, PropsWithChildren } from 'react'; type Props = { initialBlock?: BlockTypes; onLoggedIn: () => void; onChangeFlow?: () => void; initialFlowType?: AuthType; handleNavigationEvents?: boolean; }; export declare const FlowHandlerProvider: FC>; export default FlowHandlerProvider;