import React from 'react'; interface Props { size?: 'sm' | 'md' | 'lg'; hideLabel?: boolean; alignment?: 'row' | 'column' | 'center'; annotations?: { on: string | React.ReactNode; off: string | React.ReactNode; }; } export declare const ToggleSkeleton: (props: Props) => JSX.Element; export {};