import type { DropReason } from '../../types';

export interface StyleMarshal {
  dragging: () => void;
  dropping: (reason: DropReason) => void;
  resting: () => void;
}
