import type { Project } from '@base/api';
export type ProjectDropdownProps = {
    className?: string;
    value?: string;
    options: Project[];
    isLoading?: boolean;
    onOptionClick: (option: Project) => void;
};
export declare const ProjectDropdown: ({ className, value, options, isLoading, onOptionClick, }: ProjectDropdownProps) => import("react/jsx-runtime").JSX.Element;
