import type { AdminUserResponse } from '../index.js'; interface UpdateUserProps { user: AdminUserResponse; onClose?: () => void; onSuccess?: (user: AdminUserResponse) => void; } export declare function UpdateUser({ user, onClose, onSuccess }: UpdateUserProps): import("react").JSX.Element; export {};