import React from 'react';
export interface UserTargetSelectProps {
    value?: string;
    onChange: (value: string) => void;
    error?: string;
    label?: string;
    helpText?: string;
}
export declare const PHXUserTargetSelect: ({ value, onChange, error, label, helpText, }: UserTargetSelectProps) => React.JSX.Element;
