export declare const schemaViewUploadForm: {
    type: string;
    'x-decorator': string;
    properties: {
        file: {
            type: string;
            title: string;
            required: boolean;
            'x-decorator': string;
            'x-component': string;
            'x-component-props': {
                action: string;
                multiple: boolean;
                style: {
                    marginTop: string;
                };
            };
        };
        footer: {
            type: string;
            'x-component': string;
            'x-component-props': {
                style: {
                    justifyContent: string;
                };
            };
            properties: {
                cancel: {
                    type: string;
                    title: string;
                    'x-component': string;
                    'x-use-component-props': string;
                };
                submit: {
                    type: string;
                    title: string;
                    'x-component': string;
                    'x-component-props': {
                        type: string;
                    };
                    'x-use-component-props': string;
                };
            };
        };
    };
};
