import { Location } from '@gamepark/rules-api'; import { HTMLAttributes } from 'react'; import { DropAreaDescription } from './DropAreaDescription'; export type SimpleDropAreaProps

= { location: Location; description: DropAreaDescription; } & HTMLAttributes; export declare const SimpleDropArea: import("react").ForwardRefExoticComponent<{ location: Location; description: DropAreaDescription; } & HTMLAttributes & import("react").RefAttributes>;