/**
 * User Edit Page
 *
 * Complete page component for editing users with data fetching,
 * form handling, and navigation. This is a self-contained page that can be
 * directly used in any application that imports the identity module.
 */
import React from 'react';
export interface UserEditPageProps {
    /**
     * User ID to edit
     */
    userId: string;
    /**
     * Navigation function to handle route changes
     */
    onNavigate?: (path: string) => void;
    /**
     * Custom handlers for user edit flow
     */
    onBack?: () => void;
    onUserUpdated?: (userId: string) => void;
    /**
     * Additional styling
     */
    className?: string;
}
export declare const UserEditPage: React.FC<UserEditPageProps>;
//# sourceMappingURL=UserEditPage.d.ts.map