declare type PluginWithSetting = [string, Record<string, unknown>];
interface BranchObject {
    name: string;
    prerelease?: boolean;
    channel?: string;
}
declare type Plugin = PluginWithSetting | string;
declare type Branch = BranchObject | string;
export interface SemanticReleaseConfig {
    branches?: Branch[];
    plugins?: Plugin[];
}
export {};
//# sourceMappingURL=types.d.ts.map