import type { Profile } from '@happyvertical/smrt-profiles'; import { UserStatus } from '@happyvertical/smrt-types'; import type { User } from '@happyvertical/smrt-users'; export interface Props { user?: User | null; profile?: Profile | null; onsubmit: (data: { name: string; email: string; status: UserStatus; }) => void; oncancel?: () => void; loading?: boolean; } declare const UserForm: import("svelte").Component; type UserForm = ReturnType; export default UserForm; //# sourceMappingURL=UserForm.svelte.d.ts.map