export type SortField = 'name' | 'type';
export type SortDirection = 'ASC' | 'DESC';
export type Sort = {
    field: SortField;
    direction: SortDirection;
};
export default function FavoritesPage(): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=FavoritesPage.d.ts.map