import { PropertyValues } from 'lit'; import { DDSElement } from "../../base/index.js"; import { DaikinInputGroup } from "../input-group/index.js"; /** * A select component. * This component accepts an HTML `` element in the slot. * * Hierarchy: * - `daikin-input-group` > `daikin-select` * * @slot - A slot for an HTML ` * * * * * * * * * ``` */ export declare class DaikinSelect extends DDSElement { static readonly styles: import('lit').CSSResult; /** * Whether the select component is in an error state. */ error: boolean; /** * Whether the select component is required. */ required: boolean; /** * Whether the select component is disabled. * This value will also be applied to the `disabled` property of the `` element in the slot. * @param options focus options */ focus(options?: FocusOptions): void; } declare global { interface HTMLElementTagNameMap { "daikin-select": DaikinSelect; } }