import { InputMaybe, MediaSortKeys } from "../../shared/graphql/graphql"; import { MediaSort } from "./types"; type MediaSortingProps = { sort: MediaSort; onChange: (sortKey: InputMaybe, reverse: boolean) => void; }; declare const MediaSorting: ({ sort, onChange }: MediaSortingProps) => import("react/jsx-runtime").JSX.Element; export default MediaSorting;