export type NotificationTemplateVariableType = "string" | "number" | "currency" | "date" | "datetime" | "boolean" | "email" | "phone" | "url" | "array"; export interface NotificationTemplateVariableDefinition { key: string; label: string; example: string; type: NotificationTemplateVariableType; description?: string; } export interface NotificationTemplateVariableCategory { id: string; label: string; description?: string; variables: NotificationTemplateVariableDefinition[]; } export interface NotificationLiquidSnippet { id: string; label: string; description: string; code: string; } export declare const notificationTemplateVariableCatalog: NotificationTemplateVariableCategory[]; export declare const notificationLiquidSnippets: NotificationLiquidSnippet[];