/**
 * Created by jayhamilton on 2/3/17.
 */
import { PropertyBase } from './property-base';
export declare class DynamicDropdownProperty extends PropertyBase<string> {
    controlType: string;
    options: {
        key: string;
        value: string;
    }[];
    constructor(options?: {});
}
