import React from "react";
export interface DrawerProps {
    open: boolean;
    onClose: () => void;
    children: React.ReactNode;
    className?: string;
    style?: React.CSSProperties;
    variant?: "parent" | "child";
    escapeKey?: boolean;
    uuid?: string;
}
export declare const Drawer: React.FC<DrawerProps>;
interface DrawersProps {
    children: React.ReactNode;
    disableBackdrop?: boolean;
}
export declare const Drawers: React.FC<DrawersProps>;
export {};
//# sourceMappingURL=Drawer.d.ts.map