export declare const getSchemaFeatureModal: (workflow: any) => {
    type: string;
    properties: {
        [x: string]: {
            type: string;
            title: any;
            'x-decorator': string;
            'x-decorator-props': {
                value: {
                    workflow: any;
                };
            };
            'x-component': string;
            'x-component-props': {
                className: string;
            };
            properties: {
                [x: number]: {
                    type: string;
                    'x-decorator': string;
                    'x-decorator-props': {
                        name: string;
                        dataSource: string;
                    };
                    'x-component': string;
                    'x-component-props': {
                        uid: any;
                        noForm: boolean;
                    };
                };
            };
        };
    };
};
