import { ContainerElement } from '../internal'; import { Control } from '../forms'; import { IconButton } from '../icon-button'; /** * @element nve-time * @description A time picker is a control that enables users to choose a time value. * @since 0.3.0 * @entrypoint \@nvidia-elements/core/time * @cssprop --padding * @cssprop --font-size * @cssprop --height * @cssprop --background * @cssprop --border-radius * @cssprop --border * @cssprop --cursor * @csspart icon-button - The clock icon button element * @aria https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/time */ export declare class Time extends Control implements ContainerElement { /** * Reduces the visual container for a minimal borderless appearance while preserving whitespace bounds. * Use when embedding within another container such as a toolbar. */ container?: 'flat'; static styles: import('lit').CSSResult[]; static readonly metadata: { tag: string; version: string; }; static elementDefinitions: { [IconButton.metadata.tag]: typeof IconButton; }; protected get suffixContent(): import('lit').TemplateResult<1>; }