import * as React from "react"; import { SwitchProps as FluentSwitchProps } from "@fluentui/react-components"; export interface SwitchProps extends Omit { variant?: "default" | "brand" | "success" | "warning"; onCheckedChange?: (checked: boolean) => void; onChange?: FluentSwitchProps["onChange"]; } declare const Switch: React.ForwardRefExoticComponent>; export { Switch }; //# sourceMappingURL=switch.d.ts.map