import { type FC } from "react"; import type VibeComponentProps from "../../types/VibeComponentProps"; export interface ToggleTextProps extends VibeComponentProps { /** * The text content inside the toggle. */ children: string; /** * If true, applies a disabled style to the text. */ disabled: boolean; } declare const ToggleText: FC; export default ToggleText;