export declare class OrderByDto {
    orderBy: string;
    orderSort: 'ASC' | 'DESC';
}
