interface DataOption { id: string; label: string; } interface FormProfile { id: string; avatar: string; fullName: string; position: string; positionLevel: string; organization: string; } interface RoleData { attrOwnership: string; attrIsCreate: boolean; attrIsList: boolean; attrIsGet: boolean; attrIsUpdate: boolean; attrIsDelete: boolean; attrPrivilege: string; authSysId: string; parentNode: string; } export type { DataOption, FormProfile, RoleData };