import { type FC } from "react"; import type VibeComponentProps from "../../types/VibeComponentProps"; import { type ToggleSize } from "./Toggle.types"; export interface MockToggleProps extends VibeComponentProps { /** * If true, hides the on/off labels. */ areLabelsHidden?: boolean; /** * If true, the toggle is in the "on" state. */ checked?: boolean; /** * The text displayed when the toggle is in the "off" state. */ offOverrideText?: string; /** * The text displayed when the toggle is in the "on" state. */ onOverrideText?: string; /** * Class name applied when the toggle is selected. */ selectedClassName?: string; /** * If true, disables the toggle. */ disabled: boolean; /** * The size of the toggle. */ size?: ToggleSize; } export declare const MockToggle: FC;