import React from 'react'; import { SwitchProps } from './index'; export type SwitchTrackProps = React.HTMLAttributes & { /** * This prop allows you to provide switch state and control it. This property overrides internal component state */ readonly checked: boolean; readonly color?: SwitchProps['color']; }; declare const _default: React.ForwardRefExoticComponent & { /** * This prop allows you to provide switch state and control it. This property overrides internal component state */ readonly checked: boolean; readonly color?: string | undefined; } & React.RefAttributes>; export default _default;