5 lines
162 B
TypeScript
5 lines
162 B
TypeScript
export interface IDraggableZoneStyles {
|
|
root: string;
|
|
}
|
|
export declare const getClassNames: (className: string, isDragging: boolean) => IDraggableZoneStyles;
|