interface GitFreshOptions {
    ignoreEnvFiles?: boolean;
    skipConfirmation?: boolean;
    ignoreGlobFiles?: string;
}
/**
 * Main function that performs the git fresh operation
 */
export declare function gitFresh(options?: GitFreshOptions): Promise<void>;
export {};
