import * as react_jsx_runtime from 'react/jsx-runtime'; import { ReactNode } from 'react'; import { RootProps } from '@radix-ui/themes/components/dialog'; interface AddMfaDialogProps extends RootProps { children?: ReactNode; onSuccess?: () => void; } declare function AddMfaDialog({ children, onSuccess, ...props }: AddMfaDialogProps): react_jsx_runtime.JSX.Element; export { AddMfaDialog };