import { Git } from '@yuki-no/plugin-sdk/infra/git';
type CreateCommitOptions = {
    message: string;
    allowEmpty?: boolean;
    needSquash?: boolean;
};
export declare const createCommit: (git: Git, { message, allowEmpty }: CreateCommitOptions) => void;
export {};
