import { InlineConfig } from "vite";
export type RedwoodPluginOptions = {
    silent?: boolean;
    rootDir?: string;
    includeCloudflarePlugin?: boolean;
    configPath?: string;
    entry?: {
        client?: string | string[];
        worker?: string;
    };
};
export declare const redwoodPlugin: (options?: RedwoodPluginOptions) => Promise<InlineConfig["plugins"]>;
