import { SelectProps } from 'antd'; export interface SelectComponentProps extends SelectProps { onChange?: (value: any) => void; } declare const IconStyleEditor: (props: SelectComponentProps) => JSX.Element; export default IconStyleEditor;