import React from "react";
export interface ApplicationContainerProps extends React.HTMLAttributes<HTMLDivElement> {
    /**
     * If set then the `element` is extended automatically by a `monitor-dropzone` data attribute.
     * This need to match with a `dropzone-for` data attribute on available dropzones for dragged elements.
     */
    monitorDropzonesFor?: string[];
}
export declare const ApplicationContainer: ({ children, className, monitorDropzonesFor, ...otherDivProps }: ApplicationContainerProps) => React.JSX.Element;
export default ApplicationContainer;
