import type { ReactElement } from 'react';
import type { DotsProps } from './Dots';
export declare type LabelsProps = Omit<DotsProps, 'dotType'>;
/**
 * Renders labels for dots. Internally it's just a wrapper for [`<Dots>`](#dots) component
 * with `dotType="circle"`.
 */
export declare function Labels(props: LabelsProps): ReactElement;
