import { Component } from '../../core'; import type { Group } from '../../shapes'; import type { SwitchOptions, SwitchStyleProps } from './types'; export type { SwitchStyleProps, SwitchOptions }; export declare class Switch extends Component { /** * 组件 switch */ static tag: string; /** * 开关 */ private checked; constructor(options: SwitchOptions); render(attributes: Required, container: Group): void; }