1import { TimeZone } from '@grafana/data';
2
3export interface UserPreferencesDTO {
4  timezone: TimeZone;
5  weekStart: string;
6  homeDashboardId: number;
7  theme: string;
8}
9