import type { ContainerElement } from '@nvidia-elements/core/internal'; import { Control } from '@nvidia-elements/core/forms'; import { IconButton } from '@nvidia-elements/core/icon-button'; /** * @element nve-date * @description A date picker is a control that enables users to choose a date value. * @documentation https://nvidia.github.io/elements/docs/elements/date/ * @since 0.3.0 * @entrypoint \@nvidia-elements/core/date * @cssprop --padding * @cssprop --font-size * @cssprop --height * @cssprop --background * @cssprop --color * @cssprop --border-radius * @cssprop --border * @cssprop --border-bottom * @cssprop --cursor * @cssprop --font-weight * @cssprop --width * @cssprop --max-width * @cssprop --min-width * @csspart icon-button - The calendar icon button element * @aria https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/date */ export declare class Date 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>; }