import React from 'react';
import type { CSSProperties } from 'react';
import './styles.css';
declare type IDirection = 'left' | 'right' | 'top' | 'bottom';
declare type Props = {
    open: boolean;
    onClose?: VoidFunction;
    direction: IDirection;
    lockBackgroundScroll?: boolean;
    children?: React.ReactNode;
    duration?: number;
    overlayOpacity?: number;
    overlayColor?: String;
    enableOverlay?: boolean;
    style?: CSSProperties;
    zIndex?: number;
    size?: number | string;
    className?: string;
    customIdSuffix?: string;
    overlayClassName?: string;
};
declare const EZDrawer: React.FC<Props>;
export default EZDrawer;
