import React, { type ReactNode } from 'react';
export interface FunSelectOption<T = string> {
    value: T;
    label: ReactNode;
    isDisabled: boolean;
}
interface FunSelectProps {
    initValue: string;
    options: FunSelectOption[];
    onChange: (newValue: string) => void;
}
/**
 * @deprecated Utilize BaseDropdown instead
 */
export declare const FunSelect: ({ initValue, options, onChange }: FunSelectProps) => React.JSX.Element;
export {};
