import { PropsWithChildren } from 'react'; export interface ToggleButtonProps { /** * A unique identifier for the toggle button. */ id: string; } export declare function ToggleButton({ id, children, }: PropsWithChildren): JSX.Element;