import type { AdminUserResponse } from '../index.js'; interface CreateAdminUserProps { onClose?: () => void; /** Called on successful create with the new user so the parent can navigate. */ onSuccess?: (user: AdminUserResponse) => void; } export declare function CreateAdminUser({ onClose, onSuccess }: CreateAdminUserProps): import("react").JSX.Element; export {};