import React from 'react'; declare type SelectProps = React.InputHTMLAttributes & React.SelectHTMLAttributes & { icon?: any; placeholder?: string; variant?: 'default' | 'link'; }; export declare const Select: ({ icon, placeholder, ...props }: SelectProps) => JSX.Element; export {};