import type { DOMRenderProps } from "../../utils/dom"; import type { SwitchGroupVariants } from "@heroui/styles"; import type { ReactNode } from "react"; import React from "react"; interface SwitchGroupRootProps extends DOMRenderProps { children?: ReactNode; className?: string; /** Layout orientation. */ orientation?: SwitchGroupVariants["orientation"]; } declare const SwitchGroupRoot: ({ children, className, orientation, ...props }: SwitchGroupRootProps & Omit>) => import("react/jsx-runtime").JSX.Element; export { SwitchGroupRoot }; export type { SwitchGroupRootProps };