import { type JSX } from "react"; import type { LnComponent } from "../../types"; export declare const DialogClose: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export declare namespace DialogClose { type Props = LnComponent; type State = { readonly open: boolean; readonly openChange: (b: boolean) => void; }; }