import { TemplateTypeEnum } from '../interfaces/template.types';
export declare class TemplateFilterDto {
    scope?: string;
    scopeId?: string;
    type?: TemplateTypeEnum;
    locale?: string;
    excludeNames?: string[];
}
