import { LitElement, html, css } from "lit";
import { property, customElement } from "lit/decorators.js";
import { msg, localized } from "@lit/localize";
import type { SlInput } from "@shoelace-style/shoelace";
export type TimeInputChangeEvent = CustomEvent<{
hour: number;
minute: number;
period: "AM" | "PM";
}>;
/**
* Usage:
* ```ts
*