import React from "react";
type Option = {
    value: string;
    label: string;
};
interface SelectProps {
    options: Option[];
    placeholder?: string;
    onChange: (value: string) => void;
    fullWidth?: boolean;
}
declare const Select: React.FC<SelectProps>;
export default Select;
