export type PromptRow = {
  id: string;
  prompt_name: string;
  prompt_value: string;
  prompt_key: string | null;
  created_by: string;
  updated_by: string;
  created_at: string;
  updated_at: string;
};

export type PromptFormValues = {
  prompt_name: string;
  prompt_value: string;
  prompt_key: string | null;
};
