import * as React from 'react'; import { StandardProps } from '../../common'; export interface IndicatorKnobProps extends StandardProps { /** * @ignore */ children?: void; /** * Indicates the x position of the knob in the 0 to 1 range. By default 0.5. * @default 0.5 */ x?: number; /** * Indicates the y position of the knob in the 0 to 1 range. By default 0.5. * @default 0.5 */ y?: number; /** * Sets the background color of the knob. */ color?: string; /** * Sets the indicator as active. * @default false */ active?: boolean; /** * Sets the indicator as focused. * @default false */ focus?: boolean; /** * Sets the indicator as disabled, i.e., not movable. * @default false */ disabled?: boolean; /** * Animate the position of the indicator * @default false */ animate?: boolean; } /** * The indicator knob is a button like component that is placed in a container to indicate a position. */ export declare const IndicatorKnob: React.SFC & { inner: { readonly Indicator: any; }; };