vira - v31.9.6
    Preparing search index...

    Variable ViraSelectConst

    ViraSelect: DeclarativeElementDefinition<
        "vira-select",
        {
            options: readonly Readonly<ViraSelectOption>[];
            value: string | undefined;
        } & PartialWithUndefined<
            {
                attributePassthrough: Readonly<
                    PartialWithUndefined<
                        {
                            label: AttributeValues;
                            option: AttributeValues;
                            select: AttributeValues;
                        },
                    >,
                >;
                disabled: boolean;
                hasError: boolean;
                icon: Readonly<ViraIconSvg>;
                label: string;
                placeholder: string;
                rawSelect: boolean;
            },
        >,
        { cleanupListeners: (() => void)
        | undefined; randomId: string },
        { valueChange: DefineEvent<string> },
        "vira-select-disabled" | "vira-select-error" | "vira-select-not-raw",

            | "vira-select-padding-horizontal"
            | "vira-select-padding-vertical"
            | "vira-select-icon-padding",
        readonly [],
        readonly [],
    > = ...

    Similar to ViraDropdown but is, instead, simply a wrapper for <select> and nothing more.