import type { FC } from 'react'; import './index.less'; declare type SimulatorValueType = 'app' | 'pc'; export interface SimulatorSwitchProps { defaultValue?: SimulatorValueType; switchSimulator: (value: SimulatorValueType) => void; } declare const SimulatorSwitch: FC; export default SimulatorSwitch;