export type SortType = "DEFAULT" | "ASC" | "DESC"; export interface SortOption { sortType: SortType; isOptionActive: boolean; text: string; } export declare enum SortTypeEnum { DEFAULT = "DEFAULT", ASC = "ASC", DESC = "DESC" }