import { Toggle as IToggle } from "../response.js"; import { ListenerName } from "../names.js"; import { Component } from "../../components/component.js"; export { IToggle }; export declare class ToggleBaseImpl extends Component { /** * The splash radius when you click on the toggle. */ splashRadius(splashRadius: IToggle['splashRadius']): this; /** * The default focus in boolean. */ autofocus(autofocus: IToggle['autofocus']): this; /** * Determines the way that drag start behavior is handled. */ dragStartBehavior(dragStartBehavior: IToggle['dragStartBehavior']): this; onPressed(listener: ListenerName, props?: { [k: string]: unknown; }): this; style(style: IToggle['style']): this; /** * The name that will be used in the form. */ name(name: IToggle['name']): this; /** * The toggle is disabled if true */ disabled(disabled: IToggle['disabled']): this; }