import { ComponentRef } from '@angular/core';
import { PickerComponent } from './picker.component';
import { PickerCallBack, PickerOptions } from './picker-options.provider';
import { PopupService } from '../core/services/popup.service';
export declare class PickerService extends PopupService {
    comRef: ComponentRef<PickerComponent>;
    defaultOptions: PickerOptions;
    showPicker(config?: PickerOptions, confirmCallback?: PickerCallBack, cancelCallback?: PickerCallBack): any;
    hidePicker(): void;
}
