export type BaseFields = { title?: string; body?: string; state?: string; }; export type GithubBase = { repo: string; resources: Record; }; export declare function loadBase(projectRoot: string, repo: string): GithubBase; export declare function saveBase(projectRoot: string, base: GithubBase): void;