import type { ValuesOf } from "../../util/typings.js"; /** * Values for the `control-size` attribute on SearchBox elements. * * @public */ export declare const SearchBoxControlSizes: { readonly small: "small"; readonly medium: "medium"; readonly large: "large"; }; export type SearchBoxControlSize = ValuesOf; /** * Values for the `appearance` attribute on SearchBox elements. * * @public */ export declare const SearchBoxAppearances: { readonly outline: "outline"; readonly underline: "underline"; readonly filledLighter: "filled-lighter"; readonly filledDarker: "filled-darker"; }; export type SearchBoxAppearance = ValuesOf; /** * Values for the `type` attribute on SearchBox elements. * * @public */ export declare const SearchBoxTypes: { readonly email: "email"; readonly password: "password"; readonly number: "number"; readonly tel: "tel"; readonly text: "text"; readonly url: "url"; }; export type SearchBoxType = ValuesOf; /** * Input types that block implicit form submission. * * @public */ export declare const ImplicitSubmissionBlockingTypes: string[]; /** * SearchBox event names. * * @public */ export declare const SearchBoxEventNames: { readonly search: "search"; }; //# sourceMappingURL=search-box.options.d.ts.map