export type Locale = {
  apiId: string;
  id: string;
  displayName: string;
  isDefault: boolean;
};

export type FormLocale = Locale & {
  isEnabled: boolean;
};
