export declare const SHARE_PROPS: {
  title: {
    type: StringConstructor;
    default: any;
  };
  color: {
    type: StringConstructor;
    default: string;
  };
  formatter: {
    type: FunctionConstructor;
    default: null;
  };
  confirmText: {
    type: StringConstructor;
    default: any;
  };
  confirmDisabledText: {
    type: StringConstructor;
    default: any;
  };
  allowSameDay: BooleanConstructor;
  type: {
    type: StringConstructor;
    default: string;
    observer: string;
  };
  minDate: {
    type: NumberConstructor;
    default: number;
  };
  maxDate: {
    type: NumberConstructor;
    default: number;
  };
  rowHeight: {
    type: null;
    default: number;
  };
  showMark: {
    type: BooleanConstructor;
    default: boolean;
  };
  showTitle: {
    type: BooleanConstructor;
    default: boolean;
  };
  showConfirm: {
    type: BooleanConstructor;
    default: boolean;
  };
  showSubtitle: {
    type: BooleanConstructor;
    default: boolean;
  };
  safeAreaInsetBottom: {
    type: BooleanConstructor;
    default: boolean;
  };
  poppable: {
    type: BooleanConstructor;
    default: boolean;
  };
  firstDayOfWeek: {
    type: NumberConstructor;
    default: number;
  };
};
