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