import * as react_jsx_runtime from 'react/jsx-runtime'; import { ReactNode } from 'react'; import { RootProps } from '@radix-ui/themes/components/alert-dialog'; interface ResetMfaDialogProps extends RootProps { children?: ReactNode; isPasswordSet: boolean; } declare function ResetMfaDialog({ children, isPasswordSet, ...props }: ResetMfaDialogProps): react_jsx_runtime.JSX.Element; export { ResetMfaDialog };