import type { AdminProfile, ChangePasswordPayload, UpdateProfilePayload } from "../api"; export type { AdminProfile }; export type ProfileFormValues = UpdateProfilePayload; export type ChangePasswordFormValues = ChangePasswordPayload & { confirmPassword: string; }; export type ProfileSummaryProps = { profile: AdminProfile | null; }; export type ProfileInfoListProps = { profile: AdminProfile | null; }; export type ProfileInfoItemProps = { label: string; value: string; };