/// <reference types="react" />
import { DropdownProps as SuiDropdownProps } from 'semantic-ui-react';
import { FormComponentProps } from '@tomino/dynamic-form';
declare type Props = {
    filterSource: string;
    filterColumn: string;
    schemaSource: string;
    template: string;
    asyncOptions: string;
};
export declare type MenuChildProps = {
    name: string;
};
export declare type DropdownProps = SuiDropdownProps & Props;
export declare const DropdownView: (props: FormComponentProps<DropdownProps, any, any>) => JSX.Element;
export {};
