type SpecType = {
  values: Record<string, unknown>;
};

export interface PreviewYamlType {
  content: string;
  initContent: string;
  isSecret: boolean;
  name: string;
  type: string;
  uid: string;
  key?: string;
  gvr?: string;
  spec?: SpecType;
}
