/** * GitHub labels setup - 識学理論準拠の53ラベル */ import { Octokit } from '@octokit/rest'; export interface Label { name: string; color: string; description: string; } /** * 識学理論準拠の53ラベル定義 */ export declare const MIYABI_LABELS: Label[]; /** * Setup labels on GitHub repository */ export declare function setupLabels(owner: string, repo: string, octokit: Octokit): Promise<{ created: number; updated: number; skipped: number; }>; //# sourceMappingURL=labels.d.ts.map