import { List } from "../../interfaces/models/List";
declare function useUpdateList(): ({ listId, update, }: {
    listId: string;
    update: Partial<{
        name: string;
    }>;
}) => Promise<List>;
export default useUpdateList;
