import { Plugin } from 'vite'; /** * Options for vite-plugin-protobuf. */ interface ProtobufPluginOptions { /** * The path to the directory containing your `.proto` files. */ protoPath: string; } declare function protobuf(inlineOptions: ProtobufPluginOptions): Plugin; export { type ProtobufPluginOptions, protobuf as default };