import * as Switch from "@radix-ui/react-switch"; type StackToggleButtonIcon = React.ComponentType> | React.ReactNode; export type StackToggleButtonProps = Omit & Readonly<{ icons: { active: StackToggleButtonIcon; inactive: StackToggleButtonIcon; }; children: React.ReactNode; }> & React.RefAttributes; export declare function StackToggleButton({ icons, className, children, ref, ...props }: StackToggleButtonProps): import("react").JSX.Element; export declare namespace StackToggleButton { var displayName: string; } export {}; //# sourceMappingURL=StackToggleButton.d.ts.map