export declare const Channels: { readonly 'design-system-testing': "C02JA6UG886"; readonly 'design-system-team': "GGGR7AXHP"; readonly 'leafygreen-ui-releases': "C01CBLPFD35"; }; export type ChangeType = 'major' | 'minor' | 'patch' | 'dependency'; export interface ReleaseBotOptions { channel: keyof typeof Channels; test: boolean; dry: boolean; verbose: boolean; } export interface ComponentUpdateObject { name: string; version: string; updates?: Array; } export interface SortedUpdates { major: Array; minor: Array; patch: Array; /** Components with only a dependency update patch */ dependency: Array; } export declare const isComponentUpdateObject: (obj: any) => obj is ComponentUpdateObject; export declare const isValidUpdatesArray: (arr: any) => arr is Array; //# sourceMappingURL=release-bot.types.d.ts.map