export declare const getSchemaActionLaunch: (params: any) => {
    name: string;
    type: string;
    'x-component': string;
    title: string;
    properties: {
        drawer: {
            type: string;
            'x-component': any;
            'x-component-props': any;
            properties: {
                content: {
                    type: string;
                } & (({
                    'x-decorator'?: undefined;
                } | {
                    'x-decorator': string;
                }) & {
                    'x-component': string;
                });
            };
        };
    };
};
