import type { CloseButtonVariants } from "@heroui/styles"; import type { ComponentPropsWithRef } from "react"; import { Button as ButtonPrimitive } from "react-aria-components/Button"; interface CloseButtonRootProps extends ComponentPropsWithRef, CloseButtonVariants { } declare const CloseButtonRoot: ({ children, className, slot, style, variant, ...rest }: CloseButtonRootProps) => import("react/jsx-runtime").JSX.Element; export { CloseButtonRoot }; export type { CloseButtonRootProps };