export const testData: ({ title: string; key: string; icon: string; selected?: undefined; } | { title: string; key: string; icon: string; selected: boolean; })[]; export const testSubList: ({ label: string; key: string; selected?: undefined; } | { label: string; key: string; selected: boolean; })[]; export const testCardList: { title: string; key: string; url: string; }[]; export const rightIcons: { name: string; key: number; label: string; disabled: boolean; }[]; export const leftIcons: ({ name: string; key: number; label: string; disabled: boolean; selected: boolean; } | { name: string; key: number; label: string; disabled: boolean; selected?: undefined; })[]; export const boardList: any[]; export const zoomList: { label: string; key: number; value: number; }[];