///
import { SelectProps } from 'tea-component';
import { IUseoptionsParams } from '../request';
interface IPureSelectProps extends Pick {
name?: string;
onChange: (v: string, triggerEvent: boolean) => void;
layout?: 'horizontal' | 'vertical';
className?: string;
params: IUseoptionsParams;
readOnly?: boolean;
}
export declare function PureSelectPc(props: IPureSelectProps): JSX.Element;
export declare function PureSelectH5(props: IPureSelectProps): JSX.Element;
export {};