frc-ui
Version:
React Web UI
18 lines (17 loc) • 549 B
TypeScript
import React from 'react';
import { SelectProps, SelectValue } from 'antd/es/select';
import { OptGroup as G, Option as Opt } from 'rc-select';
interface SelectP {
onClear?: Function;
}
declare class SWCSelect<T = SelectValue> extends React.Component<SelectProps & SelectP, {}> {
static Option: typeof Opt;
static OptGroup: typeof G;
static SECRET_COMBOBOX_MODE_DO_NOT_USE: string;
private rcSelect;
saveSelect: (node: any) => void;
focus(): void;
blur(): void;
render(): JSX.Element;
}
export default SWCSelect;