import Callable from "@dikac/t-function/callable"; import MapContainer from "../map/map"; import Value from "@dikac/t-value/value"; export default function SortValueParameter({ map, compare }: MapContainer> & { compare: Callable<[Val, Val], number>; }): void; export default function SortValueParameter({ value, compare }: Value> & { compare: Callable<[Val, Val], number>; }): void;