import { AriaLabelingProps, DOMProps, StyleProps, DOMRefValue } from "@react-types/shared"; import { DropZoneProps } from "react-aria-components"; import React, { ReactNode } from "react"; export interface SpectrumDropZoneProps extends Omit, DOMProps, StyleProps, AriaLabelingProps { /** The content to display in the drop zone. */ children: ReactNode; /** Whether the drop zone has been filled. */ isFilled?: boolean; /** The message to replace the default banner message that is shown when the drop zone is filled. */ replaceMessage?: string; } /** * A drop zone is an area into which one or multiple objects can be dragged and dropped. */ export const DropZone: React.ForwardRefExoticComponent>>; //# sourceMappingURL=types.d.ts.map