import { Image } from '../image'; export interface ContainerImage { tag: string; lastUpdated: string; digest?: string; } export declare function handler(): Promise; export declare function orderTags(imageTags: ContainerImage[]): Promise; export declare function formatTriggerLines(image: Image, missingImageTags: ContainerImage[], repoPrefix: string, accountId: string, region: string): Promise; export declare function filterTags(dockerImageTags: ContainerImage[], ecrImageTags: ContainerImage[], image: Image): Promise;