import * as React from "react";
interface Props {
    size?: number;
    options: {
        label: string;
        value: string;
        tooltip: string;
        icon: string;
        disabled: boolean;
    }[];
    value: string;
    onChange: (value: string) => void;
}
export declare const Select: React.FC<Props>;
export {};
