import type { ZeniAPIResponse } from '../../responsePayload'; import type { CardType } from '../dashboard/dashboardState'; interface DashboardLayoutPayload { preferences: { card_order: CardType[]; create_time: string; is_default: boolean; tenant_id: string; update_time: string; user_id: string; user_preference_id: number; }; } export type DashboardLayoutResponse = ZeniAPIResponse; export {};