/** * Generic semantic-release config shape for portable declaration output. * * @typedef {Record & { * branches?: Record[]; * plugins?: unknown[]; * }} SemanticReleaseConfig */ /** * @param {{ github: boolean; jsr: boolean }} options? * @returns {SemanticReleaseConfig} */ export function config({ github, jsr }?: { github: boolean; jsr: boolean; }): SemanticReleaseConfig; declare const _default: SemanticReleaseConfig; export default _default; /** * Generic semantic-release config shape for portable declaration output. */ export type SemanticReleaseConfig = Record & { branches?: Record[]; plugins?: unknown[]; };