export declare class CreateEvaluation360TemplateDto {
    name: string;
    description?: string;
    dimensions: any[];
    relationshipTypes: string[];
    isDefault?: boolean;
    organizationId?: string;
    cycleId?: string;
    scope?: {
        scopeType: 'ALL' | 'DEPARTMENT' | 'LEVEL' | 'CUSTOM';
        departmentIds?: string[];
        minLevel?: number;
        userIds?: string[];
    };
}
export declare class UpdateEvaluation360TemplateDto {
    name?: string;
    description?: string;
    dimensions?: any[];
    relationshipTypes?: string[];
    isDefault?: boolean;
    isActive?: boolean;
    organizationId?: string;
    cycleId?: string;
    scope?: {
        scopeType: 'ALL' | 'DEPARTMENT' | 'LEVEL' | 'CUSTOM';
        departmentIds?: string[];
        minLevel?: number;
        userIds?: string[];
    };
}
export declare class QueryEvaluation360TemplateDto {
    organizationId?: string;
}
