/**
 * Implements methods for update a PR title and label with  tickets / stories information via danger
 */
import * as TE from "fp-ts/TaskEither";
import * as Rr from "fp-ts/Reader";
import { MarkdownString } from "danger/distribution/dsl/Aliases";
import { GenericTicket, Configuration } from "./types";
export declare const updatePrLabel: (ticketList: ReadonlyArray<GenericTicket>) => Rr.Reader<Configuration, TE.TaskEither<Error, MarkdownString>>;
export declare const updatePrTitle: (ticketList: ReadonlyArray<GenericTicket>) => Rr.Reader<Configuration, TE.TaskEither<Error, MarkdownString>>;
