export declare const pickerProps: {
  title: {
    type: StringConstructor;
    default: string;
  };
  showToolbar: {
    type: BooleanConstructor;
    default: boolean;
  };
  loading: {
    type: BooleanConstructor;
    default: boolean;
  };
  cancelButtonText: {
    type: StringConstructor;
    default: any;
  };
  confirmButtonText: {
    type: StringConstructor;
    default: any;
  };
  visibleItemCount: {
    type: NumberConstructor;
    default: number;
  };
  itemHeight: {
    type: (NumberConstructor | StringConstructor)[];
    default: number;
  };
};
