import React from 'react';
import type { StyledProps } from '../common';
import type { DrawerEventSource, DrawerInstance, TdDrawerProps } from './type';
export declare const CloseTriggerType: {
    [key: string]: DrawerEventSource;
};
export interface DrawerProps extends TdDrawerProps, StyledProps {
    isPlugin?: boolean;
}
declare const Drawer: React.ForwardRefExoticComponent<DrawerProps & React.RefAttributes<DrawerInstance>>;
export default Drawer;
