export interface Button { id: string; isRightArrowNeeded?: boolean; label: string; isDisabled: boolean; } export interface Tile { title: string; description: string; isActive: boolean; buttons?: Button[]; }