import React from "react"; import { type SelectProps } from "./Select"; export declare const LabeledSelectSearchable: React.ForwardRefExoticComponent>, "isError"> & { label?: string; /** * Any additional information to show underneath the select. */ helperText?: React.ReactNode; /** * An error message that should be shown when there's something wrong * with the user's input. */ errorText?: React.ReactNode; /** * When true, the select and its helper/error text stretch to fill * the full width of the container. * * By default the select only takes its intrinsic width. */ fullWidth?: boolean; } & React.RefAttributes>;