import React from 'react';
import { ViewProps } from 'react-native';
import { IconsName } from '../Icon';
export interface DragDrawerProps extends ViewProps {
    /** 抽屉高度 */
    drawerHeight?: number;
    /** 抽屉颜色 */
    drawerBackgroundColor?: string;
    /** 自定义图标 */
    icon?: IconsName | React.ReactElement | React.ReactNode;
    children?: React.ReactNode;
}
declare function DragDrawer(props: DragDrawerProps): JSX.Element;
export default DragDrawer;
