import { FC, HTMLAttributes } from 'react';
export type SwitchIndicatorProps = HTMLAttributes;
/**
* A visual indicator element for the `Switch` component that represents
* the movable thumb inside the switch track.
*/
export declare const SwitchIndicator: FC;