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