import { TBumpType } from '@auto/utils/node/'; export declare type TSlackOptions = { token: string; channel: string; username: string; iconEmoji: string; colors: { major: string; minor: string; patch: string; }; }; export declare type TTelegramOptions = { token: string; chatId: string; }; export declare type TGithubOptions = { token: string; username: string; repo: string; }; export declare type TLogMessage = { type: TBumpType | 'dependencies' | 'initial'; value: string; description?: string; }; export declare type TLog = { name: string; version: string; type: TBumpType; dir: string; messages: TLogMessage[]; };