import * as React from "react"; type Props = { userId: number | null; show: boolean; onHide: (shouldUpdate: boolean) => void; suffixTitle?: string; }; export declare const EditUser: ({ userId, show, onHide, suffixTitle }: Props) => React.JSX.Element; export {};