export declare class DatePicker {
  /**
   * The Host element
   */
  element: HTMLLsDatePickerElement;
  /**
   * Time options used to populate the select element
   */
  private timeOptions;
  /**
   * The unique key that is used to identify store data.
   */
  readonly idKey: string;
  private store;
  componentWillLoad(): Promise<void>;
  componentDidLoad(): void;
  private handleSelect;
  private decrementHour;
  private incrementHour;
  private incrementDay;
  private decrementDay;
  /**
   * Use to initialize select dropdown options
   * @returns
   */
  private getTimeOptions;
  render(): any;
}
