/// import type { CommonPropsType } from '../../types'; export declare const WdSelect: ({ size, options }: { size: any; options: any; }) => JSX.Element; export interface WdSelectProps extends CommonPropsType { defaultValue?: string; size?: string; options?: any; layout?: string; }