import { Path } from "igniteui-react-core";
import { TextBlock } from "igniteui-react-core";
import { IList$1, Type } from "igniteui-react-core";
import { Brush } from "igniteui-react-core";
/**
 * @hidden
 */
export interface ITrackThumbCalloutVisual {
    readonly calloutBox: Path;
    readonly calloutText: TextBlock;
    readonly allPaths: IList$1<Path>;
    width: number;
    height: number;
    translateX: number;
    translateY: number;
    textTranslateX: number;
    textTranslateY: number;
    isVisible: boolean;
    getCalloutBoxDefaultStroke(): Brush;
    getCalloutBoxDefaultStrokeThickness(): number;
    getCalloutBoxDefaultBrush(): Brush;
    getCalloutTextDefaultBrush(): Brush;
}
/**
 * @hidden
 */
export declare let ITrackThumbCalloutVisual_$type: Type;
