import type { AnimatedStyle, UniqueIdentifier } from "../types"; export type UseDroppableStyleCallback = (_: { isActive: boolean; isDisabled: boolean; }) => StyleT; export declare const useDroppableStyle: (id: UniqueIdentifier, callback: UseDroppableStyleCallback) => StyleT;