import * as react_jsx_runtime from 'react/jsx-runtime';
import { ReactNode } from 'react';
import { RootProps } from '@radix-ui/themes/components/dialog';

interface ChangePasswordDialogProps extends RootProps {
    children?: ReactNode;
}
declare function ChangePasswordDialog({ children, ...props }: ChangePasswordDialogProps): react_jsx_runtime.JSX.Element;

export { ChangePasswordDialog };
