import { ContainerElement } from '../internal'; import { Control } from '../forms'; import { IconButton } from '../icon-button'; /** * @element nve-search * @description A search is a control that enables users to enter text to search. * @since 0.3.0 * @entrypoint \@nvidia-elements/core/search * @cssprop --padding * @cssprop --font-size * @cssprop --height * @cssprop --background * @cssprop --border-radius * @cssprop --border * @cssprop --cursor * @csspart icon-button - The icon button element * @aria https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/search */ export declare class Search 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'; /** * Sets the rounded visual style of the input. */ rounded: boolean; static styles: import('lit').CSSResult[]; static readonly metadata: { tag: string; version: string; }; static elementDefinitions: { [IconButton.metadata.tag]: typeof IconButton; }; protected get prefixContent(): import('lit').TemplateResult<1>; }