import type { ToggleButtonVariants } from "@heroui/styles";
import type { ComponentPropsWithRef } from "react";
import { ToggleButton as ToggleButtonPrimitive } from "react-aria-components";
interface ToggleButtonRootProps extends ComponentPropsWithRef<typeof ToggleButtonPrimitive>, ToggleButtonVariants {
}
declare const ToggleButtonRoot: ({ children, className, isIconOnly, size, style, variant, ...rest }: ToggleButtonRootProps) => import("react/jsx-runtime").JSX.Element;
export { ToggleButtonRoot };
export type { ToggleButtonRootProps };
