import React from 'react'; interface TdSelectRenderProps { style?: React.CSSProperties; className?: string; value?: any; onChange?: (value: any) => void; validator?: (value: any) => boolean; options?: any[]; } declare const TdSelectRender: (props: TdSelectRenderProps) => JSX.Element; export default TdSelectRender;