import { Model } from 'sequelize-typescript';
export declare class HttpServiceTaskModel extends Model<HttpServiceTaskModel> {
    flowNodeInstanceId: string;
    url: string;
    method: string;
    body: string;
    headers: string;
    createdAt?: Date;
    updatedAt?: Date;
}
