import { z } from 'zod';

export interface Config {
  showSavings: boolean;
}

export const configSchema: z.ZodType<Config> = z.object({
  showSavings: z.boolean(),
});

export const defaultConfig: Config = {
  showSavings: true,
};

export const type = 'greeting-bar' as const;
export const category = 'custom' as const;
export const labelKey = 'module_labels.greeting-bar' as const;
