interface CreateEntityParams {
    id: string;
    name: string;
    featureId: string;
}
interface GetEntityParams {
    expand?: string[];
}
interface EntityDataParams {
    name?: string;
    featureId: string;
}

export type { CreateEntityParams, EntityDataParams, GetEntityParams };
