import React from 'react';
interface IProps {
    children?: React.ReactNode;
    onClose: () => void;
    visible: boolean;
    title?: string;
    [key: string]: any;
}
declare const ParticleDrawer: (props: IProps) => React.JSX.Element;
export default ParticleDrawer;
