import React from 'react';
export interface TaskTypeOptions {
    title: string;
    collection: string;
    action?: string;
    useActionParams: Function;
    Actions?: React.ComponentType;
    Item: React.ComponentType;
    Detail: React.ComponentType;
    alwaysShow?: boolean;
}
export declare const TASK_STATUS: {
    ALL: string;
    PENDING: string;
    COMPLETED: string;
};
export declare function usePopupRecordContext(): any;
export declare function WorkflowTasks(): React.JSX.Element;
export declare function TasksProvider(props: any): React.JSX.Element;
