import { List } from "../../interfaces/models/List";
declare function useAddToList(): ({ entityId, currentList, }: {
    entityId: string;
    currentList: List;
}) => Promise<List>;
export default useAddToList;
