import React from 'react'; declare type SelectOptionProps = { value?: any; children?: React.ReactNode; }; export declare const SelectOption: (props: SelectOptionProps) => JSX.Element; export declare type SelectProps = { children?: React.ReactNode; value: any; className?: string; style: React.CSSProperties; onSelect?: (value: any) => void; onChange?: (value: any) => void; }; export declare const Select: (props: SelectProps) => JSX.Element; export {};