/// <reference types="react" />
export declare type SortField = 'name' | 'type';
export declare type SortDirection = 'ASC' | 'DESC';
export declare type Sort = {
    field: SortField;
    direction: SortDirection;
};
export default function FavoritesPage(): JSX.Element;
