import { ElementType } from 'react'; import type { DialogCloseProps } from './types'; /** * Close button component that closes the dialog when activated. * Supports keyboard navigation and proper event handling. */ export declare const DialogClose: { ({ as, ref, onClick, children, ...props }: DialogCloseProps): import("react/jsx-runtime").JSX.Element; displayName: string; };