import React from 'react'; import { CSS } from "../config"; interface Props { css?: CSS; } declare type NativeAttrs = Omit, keyof Props>; export declare type DrawerProps = Props & NativeAttrs; declare const ButtonClose: React.FC>; export default ButtonClose;