export declare const getSchemaCheckContent: (params: any) => {
    name: string;
    type: string;
    properties: {
        tabs: {
            type: string;
            'x-component': string;
            properties: {
                detail: {
                    type: string;
                    title: string;
                    'x-component': string;
                    properties: {
                        detail: {
                            type: string;
                            'x-decorator': string;
                            'x-decorator-props': {
                                designable: boolean;
                            };
                            'x-component': string;
                            'x-component-props': {
                                uid: any;
                                noForm: boolean;
                            };
                        };
                        timeline: {
                            type: string;
                            'x-component': string;
                        };
                    };
                };
            } & ({
                process?: undefined;
            } | {
                process: {
                    type: string;
                    title: string;
                    'x-component': string;
                    properties: {
                        process: {
                            type: string;
                            'x-component': string;
                        };
                    };
                };
            });
        };
    };
};
