import { ZnsTemplate } from './zns-template.entity';
export declare class ZnsTemplateDetail {
    id: string;
    templateId: string;
    status: string;
    listParams?: Record<string, any>;
    listButtons?: Record<string, any>;
    timeout?: number;
    previewUrl?: string;
    templateQuality?: string;
    templateTag?: string;
    price?: number;
    applyTemplateQuota: boolean;
    reason?: string;
    syncedAt: Date;
    template: ZnsTemplate;
}
