import { JPickerConfigInterface } from "../../Interface/JPickerConfigInterface"; import { Component } from "../Component"; import { JPickerBuilder } from "./JPickerBuilder"; import "../../JPicker.scss"; export declare class JPicker extends Component { private JPickerBuilderI; private JPickerEventsI; private currentValue; private visibleDate; private event; private config; constructor(config?: JPickerConfigInterface); getBuilder(): JPickerBuilder; getCurrentValue(): Array; setCurrentValue(currentValue: Array): JPicker; getVisibleDate(): Array; setVisibleDate(visibleDate: Array): JPicker; protected run(): void; protected getMustache(): any; }