import type React from "react"; import { FieldLabel } from "src/primitives/Field"; interface SelectFieldWrapperProps { id: string; label: string; error: string; helpText: React.ReactNode; errorId: string; helpTextId: string; isDisabled: boolean; required: boolean; testIdPrefix?: string; labelProps?: Omit, "htmlFor" | "children">; className?: string; children: React.ReactNode; } export declare function SelectFieldWrapper({ id, label, error, helpText, errorId, helpTextId, isDisabled, required, testIdPrefix, labelProps, className, children, }: SelectFieldWrapperProps): import("react/jsx-runtime").JSX.Element; export {};