/// <reference types="react" />
export interface SwipeableDrawerProps {
    /**
     * The open function of the component
     */
    onOpen?: () => void;
    /**
     * The close function of the component
     */
    onClose?: () => void;
    /**
     * The open state
     */
    open: boolean;
    /**
     * The top border radius
     */
    rounded?: boolean;
    /**
     * The children of the component
     */
    children?: React.ReactNode;
}
