import { ChangeEventProps, ChangeEventState, EmphasisProps, FocusEventProps, FocusEventState, FormCheckProps, FormProps, FormState, GlobalProps, GlobalState, IconAfterProps, IconProps, InitializedState, SizeProps } from '../../shared/model'; export type DBSwitchDefaultProps = { /** * Add additional icons to indicate active/inactive state. */ visualAid?: boolean; }; export type DBSwitchProps = DBSwitchDefaultProps & GlobalProps & ChangeEventProps & FocusEventProps & FormProps & FormCheckProps & EmphasisProps & SizeProps & IconProps & IconAfterProps; export type DBSwitchDefaultState = { _checked: boolean; }; export type DBSwitchState = DBSwitchDefaultState & GlobalState & ChangeEventState & FocusEventState & FormState & InitializedState;