export interface CampaignSequenceItem {
  role: string;
  format: string;
  label: string;
  direction: string;
}

export interface CampaignObjectiveInfo {
  label: string;
  description: string;
}

export interface ToneInfo {
  tone: string;
  focus: string;
  hook: string;
}

export const CAMPAIGN_SEQUENCE_DEFAULT: CampaignSequenceItem[];

export const CAMPAIGN_OBJECTIVES: Record<string, CampaignObjectiveInfo>;

export const OCASIOES_BR: Record<string, string>;

export const FORMAT_LABELS_BR: Record<string, string>;

export const SEASONAL_TONES: Record<string, ToneInfo>;

export const SERIES_COUNTS: number[];

export const STORAGE_KEYS: Record<string, string>;

export const MODELS: {
  pack: string;
  research: string;
  preview: string;
};
