import Component from '../../components/time-picker/time-picker.component.js';
import { type EventName } from '@lit/react';
import type { CwChangeEvent } from '../../events/events.js';
import type { CwClearEvent } from '../../events/events.js';
import type { CwInputEvent } from '../../events/events.js';
import type { CwFocusEvent } from '../../events/events.js';
import type { CwBlurEvent } from '../../events/events.js';
import type { CwShowEvent } from '../../events/events.js';
import type { CwAfterShowEvent } from '../../events/events.js';
import type { CwHideEvent } from '../../events/events.js';
import type { CwAfterHideEvent } from '../../events/events.js';
import type { CwInvalidEvent } from '../../events/events.js';
export type { CwChangeEvent } from '../../events/events.js';
export type { CwClearEvent } from '../../events/events.js';
export type { CwInputEvent } from '../../events/events.js';
export type { CwFocusEvent } from '../../events/events.js';
export type { CwBlurEvent } from '../../events/events.js';
export type { CwShowEvent } from '../../events/events.js';
export type { CwAfterShowEvent } from '../../events/events.js';
export type { CwHideEvent } from '../../events/events.js';
export type { CwAfterHideEvent } from '../../events/events.js';
export type { CwInvalidEvent } from '../../events/events.js';
/**
* @summary Time pickers let users select a time from a set of predefined hour, minute, second, and meridiem columns.
* @documentation https://cw-elements-b0c7e5.gitlab.io/components/time-picker
* @status experimental
* @since 1.1
*
* @dependency cw-icon
* @dependency cw-option
* @dependency cw-popup
*
* @slot label - The input's label. Alternatively, you can use the `label` attribute.
* @slot prefix - Used to prepend a presentational icon or similar element to the combobox.
* @slot suffix - Used to append a presentational icon or similar element to the combobox.
* @slot clear-icon - An icon to use in lieu of the default clear icon.
* @slot expand-icon - The icon to show when the control is expanded and collapsed.
* @slot help-text - Text that describes how to use the input. Alternatively, you can use the `help-text` attribute.
*
* @event cw-change - Emitted when the control's value changes.
* @event cw-clear - Emitted when the control's value is cleared.
* @event cw-input - Emitted when the control receives input.
* @event cw-focus - Emitted when the control gains focus.
* @event cw-blur - Emitted when the control loses focus.
* @event cw-show - Emitted when the time picker's listbox opens.
* @event cw-after-show - Emitted after the time picker's listbox opens and all animations are complete.
* @event cw-hide - Emitted when the time picker's listbox closes.
* @event cw-after-hide - Emitted after the time picker's listbox closes and all animations are complete.
* @event cw-invalid - Emitted when the form control has been checked for validity and its constraints aren't satisfied.
*
* @csspart form-control - The form control that wraps the label, input, and help text.
* @csspart form-control-label - The label's wrapper.
* @csspart form-control-input - The time picker's wrapper.
* @csspart form-control-help-text - The help text's wrapper.
* @csspart combobox - The container the wraps the prefix, suffix, display input, clear icon, and expand icon.
* @csspart prefix - The container that wraps the prefix slot.
* @csspart suffix - The container that wraps the suffix slot.
* @csspart display-input - The element that displays the selected time, an `` element.
* @csspart listbox - The listbox container where the hour/minute/second/meridiem columns are rendered.
* @csspart column - One of the listbox's columns.
* @csspart option - An individual option within a column.
* @csspart clear-button - The clear button.
* @csspart expand-icon - The container that wraps the expand icon.
*/
declare const reactWrapper: import("@lit/react").ReactWebComponent;
onCwClear: EventName;
onCwInput: EventName;
onCwFocus: EventName;
onCwBlur: EventName;
onCwShow: EventName;
onCwAfterShow: EventName;
onCwHide: EventName;
onCwAfterHide: EventName;
onCwInvalid: EventName;
}>;
export default reactWrapper;