import type { Config } from './types/config';
export declare const defaults: {
    readonly userName: "github-actions";
    readonly email: "action@github.com";
    readonly branch: "main";
    readonly label: "sync";
};
export declare const createConfig: () => Config;
export declare const inferUpstreamRepo: () => string;
