import{LyraInput}from'./input.class.js';import type{LyraAppearance}from'../../../internal/variants.js'; /** * `` — the browser-native time field preserved from Lyra 7. * * Use this control when the platform's own `input[type=time]` UI is preferred. The segmented, * locale-aware Web Awesome-compatible field is ``. * * Inherited stepUp/stepDown use pending value, step, min, and max properties synchronously * and remain event-silent. Removed label/hint/help-text/error-text content is safely omitted. * * @customElement lr-native-time-input * @csspart base - Compatibility name for the control row; use `time-input`. * @csspart time-input - The native time control row. It is the same node as `base` and the * inherited `input-wrapper` part. * @status stable * @since 8.0.0 */ export declare class LyraNativeTimeInput extends LyraInput{ /** Lyra 7 visual default retained intentionally while the mapped `lr-input` default moves to * outlined in v8. */ appearance:LyraAppearance;protected get inputWrapperParts():string; /** Earliest selectable native time. */ min?:string|number; /** Latest selectable native time. */ max?:string|number;constructor();connectedCallback():void;}declare global{interface HTMLElementTagNameMap{'lr-native-time-input':LyraNativeTimeInput;}}