export type HiddenDsWarningSource = {
    source: string;
};
export type HiddenDsWarning = {
    sources: HiddenDsWarningSource[];
};
export type OutdatedDsWarningSource = {
    source: string;
    latestVersion: string;
};
export type OutdatedDsWarning = {
    sources: OutdatedDsWarningSource[];
};
type EventSpecificationId = string;
export type EventSpecificationsInputMetadata = Record<EventSpecificationId, {
    outdatedDsWarnings: OutdatedDsWarning[];
    hiddenDsWarnings: HiddenDsWarning[];
}>;
export {};
