import { CommonComponentProps } from "Types/common"; /** Styles End **/ export type Switch = { id: string; text: string; action: () => void; }; export type SwitcherProps = CommonComponentProps & { switches: Array; activeSwitchClass?: string; activeObj?: Switch; }; declare function Switcher(props: SwitcherProps): JSX.Element; export default Switcher;