/** * git options for temp directory initialization */ export interface GitOptions { commits?: { init?: boolean; fixture?: boolean; }; } /** * .what = converts git option to explicit form with defaults applied * .why = handles boolean shorthand and applies defaults */ export declare const asExplicitGitOptions: (git: boolean | GitOptions | undefined) => { commits: { init: boolean; fixture: boolean; }; } | null;