import React from 'react';
import { DrawerModalPropsModel } from '../DrawerModal';
import { SwipeableLargeDrawerModel } from '../../components';
export interface SwipeModalDrawerModel extends Omit<DrawerModalPropsModel & SwipeableLargeDrawerModel, 'children'> {
    children?: React.ReactNode;
    isFullHeightOrSwipe?: 'fullHeight' | 'swipe';
    onCloseDrawer?: () => void;
    SwipeableLargeDrawerProps?: Partial<SwipeableLargeDrawerModel>;
}
export declare const DrawerModalSwipe: ({ children, isFullHeightOrSwipe, SwipeableLargeDrawerProps, onCloseDrawer, sx, ...props }: React.PropsWithChildren<SwipeModalDrawerModel>) => import("react/jsx-runtime").JSX.Element;
