import * as React from "react";
export interface SelectProps {
    label: string;
    placeholder: string;
    values: string[];
}
export declare const Select: React.FC<SelectProps>;
