import type { ButtonHTMLAttributes, FC, ReactNode, Ref } from 'react'; import { type TestableProps } from '../../utils/testId'; export interface DrawerCloseProps extends Omit, 'children' | 'color'>, TestableProps { children?: ReactNode; /** Render as child component */ asChild?: boolean; ref?: Ref; } export declare const DrawerClose: FC;