import { SelectVariant } from "../../ui-shared";
import type { ComponentProps } from "../../components/dynamic/components";
type ClientSelectProps = ComponentProps & {
    variant?: `${SelectVariant}`;
};
export declare const ClientSelect: ({ name, label, helpText, defaultValue, isDisabled, required, variant, }: ClientSelectProps) => import("react/jsx-runtime").JSX.Element;
export {};
