export interface IApplicationVersion {
    version: string;
    tags?: string[];
    binaryId: string;
}
export type IApplicationVersionDeleteParams = {
    tag: string;
    version?: never;
    binaryId?: string;
} | {
    tag?: never;
    version: string;
    binaryId?: string;
};
//# sourceMappingURL=IApplicationVersion.d.ts.map