import { LabelProps } from '../Label/Label.types.js'; import { BaseProps } from '../types.js'; import 'react'; import '@emotion/react'; interface SwitchBaseProps { isChecked?: boolean; onChange?: (isChecked: boolean) => void; isDisabled?: boolean; } interface SwitchProps extends Omit, SwitchBaseProps { label: string; labelProps?: Omit, "text">; } export { SwitchBaseProps, SwitchProps };