import { BaseUniDriver } from '@wix/wix-ui-test-utils/base-driver'; import { UniDriver } from '@wix/wix-ui-test-utils/unidriver'; export interface ToggleSwitchCoreUniDriver extends BaseUniDriver { /** Triggers change */ click(): Promise; /** Returns a boolean indicating if the toggleSwitch is checked */ isChecked(): Promise; /** Returns a boolean indicating if the toggleSwitch is disabled */ isDisabled(): Promise; /** Returns the toggle icon inside the knob */ getKnobIcon(): Promise; /** Returns whether the toggle has an icon */ hasKnobIcon(): Promise; /** Returns the id of the input */ getId(): Promise; /** Returns the tab index */ getTabIndex(): Promise; /** Returns the computed styles object of the root component */ getRootStyles(): Promise; /** Returns the computed styles object of the track */ getTrackStyles(): Promise; /** Returns the computed styles object of the knob */ getKnobStyles(): Promise; /** Returns the computed styles object of the knob icon */ getKnobIconStyles(): Promise; } export declare const toggleSwitchUniDriverFactory: (base: UniDriver) => ToggleSwitchCoreUniDriver; //# sourceMappingURL=ToggleSwitchCore.uni.driver.d.ts.map