import React from 'react'; import { TdDrawerProps } from './type'; import { StyledProps } from '../common'; export interface DrawerProps extends TdDrawerProps, StyledProps { isPlugin?: boolean; } declare const Drawer: React.FC; export default Drawer;