interface Props {
    /** indicator position in % */
    pos: {
        x: number;
        y: number;
    };
}
declare const PickerIndicator: import("svelte").Component<Props, {}, "">;
type PickerIndicator = ReturnType<typeof PickerIndicator>;
export default PickerIndicator;
