export declare function commit(message: string): Promise<string>;
export declare function push(remote: string, branch: string): Promise<string>;
declare const _default: {
    commit: typeof commit;
    push: typeof push;
};
export default _default;
