import React, { ButtonHTMLAttributes, PropsWithChildren } from 'react'; import { MestCss } from "../themes"; export type DrawerCloseProps = ButtonHTMLAttributes & PropsWithChildren<{ css?: MestCss; }>; export declare const DrawerClose: React.ForwardRefExoticComponent & { css?: MestCss | undefined; } & { children?: React.ReactNode; } & React.RefAttributes>;