import * as react_jsx_runtime from 'react/jsx-runtime';
import { Me } from '../api/endpoint.cjs';
import { ReactNode } from 'react';
import { RootProps } from '@radix-ui/themes/components/dialog';
import '@tanstack/react-query';
import '../api/widgets-api-client.cjs';

interface EditUserProfileDialogProps extends RootProps {
    user: Me;
    children?: ReactNode;
}
declare function EditUserProfileDialog({ children, user, ...props }: EditUserProfileDialogProps): react_jsx_runtime.JSX.Element;

export { EditUserProfileDialog };
