export type Variable = { id: string name: string value?: string | (string | null)[] | null | undefined isSessionVariable?: boolean } export type VariableWithValue = Omit & { value: string | (string | null)[] } export type VariableWithUnknowValue = Omit & { value?: unknown }