
import * as React from 'react';


interface PickerProps {
  slot?: string;
  placeholder?: string;
  title?: string;
  inputID?: string;
  label?: label;
  errorMessage ?: string;
  errorMessageForce ?: boolean;
  required ?: boolean;
  info ?: string;
  style?: React.CSSProperties;
  data?: any[];
  defaultSelect?: any[];
  selected?: string;
  actionText?: string;
  onClickAction?: (...args: any[]) => void;
  onChange?: (...args: any[]) => void;
  onCancel?: (...args: any[]) => void;
  children?: React.ReactNode;
}
declare const Picker: React.FunctionComponent<PickerProps>;

export default Picker;
  