import { GoalSet } from "../handlers/event/push/PushLifecycle"; import { SdmGoalFields, SdmGoalsByCommit } from "../typings/types"; export interface EnvironmentWithGoals { environment: string; goals: SdmGoalFields.Fragment[]; } export declare function lastGoalSet(allGoals?: SdmGoalFields.Fragment[]): SdmGoalFields.Fragment[]; export declare function sortGoals(allGoals: SdmGoalsByCommit.SdmGoal[], goalSets: GoalSet[]): EnvironmentWithGoals[];