import { FunctionComponent, ReactNode } from 'react';
import { AttachmentProps } from './Attachment';
export declare type DraggerProps = AttachmentProps & {
    height?: number;
    children?: ReactNode[];
    attachmentChildren?: ReactNode;
};
declare const Dragger: FunctionComponent<DraggerProps>;
export default Dragger;
