import React from 'react';
import './Select.scss';
export interface Props {
    selectClass?: any;
    selectId?: any;
    selectValue?: any;
    children?: any;
    onChange?: (event: any) => void;
    selectStyle?: React.CSSProperties;
}
declare const Select: ({ selectClass, selectId, selectValue, children, onChange, selectStyle }: Props) => import("react/jsx-runtime").JSX.Element;
export default Select;
