export declare const CollectionWorkflows: {
    title: string;
    name: string;
    fields: ({
        type: string;
        name: string;
        interface: string;
        uiSchema: {
            title: string;
            type: string;
            'x-component': string;
            required: boolean;
            enum?: undefined;
        };
    } | {
        type: string;
        name: string;
        interface: string;
        uiSchema: {
            type: string;
            title: string;
            'x-component': string;
            enum: {
                label: string;
                value: boolean;
            }[];
            required?: undefined;
        };
    })[];
};
