import { TapTools } from './tapbundle.classes.taptools.js'; export interface IPostTaskFunction { (tapTools?: TapTools): Promise; } export declare class PostTask { description: string; postTaskFunction: IPostTaskFunction; constructor(descriptionArg: string, postTaskFunctionArg: IPostTaskFunction); run(): Promise; }