import * as vite from 'vite'; interface CommandItem { command: string; key: string; } declare type Commands = CommandItem[]; interface PromiseItem extends CommandItem { stdout: string; } interface options { commands: Commands; } declare const InsertGitToHtml: (options?: options) => { name: string; apply: string; transformIndexHtml(html: string): Promise<{ html: string; tags: vite.HtmlTagDescriptor[]; }>; }; export { CommandItem, Commands, InsertGitToHtml, PromiseItem, InsertGitToHtml as default };