import { Theme, ComponentsProps, ComponentsOverrides, ComponentsVariants } from "@mui/material"; interface M3Switch { MuiSwitch: { defaultProps?: ComponentsProps['MuiSwitch']; styleOverrides?: ComponentsOverrides['MuiSwitch']; variants?: ComponentsVariants['MuiSwitch']; }; } export declare const getSwitch: (theme: Theme) => M3Switch; export {};