import type { Components, JSX } from "../types/components"; interface TimePeriodSelector extends Components.TimePeriodSelector, HTMLElement {} export const TimePeriodSelector: { prototype: TimePeriodSelector; new (): TimePeriodSelector; }; /** * Used to define this component and all nested components recursively. */ export const defineCustomElement: () => void;