import type { StreamPluginOptions, ResolvedUserOptions } from "../types.js";
export declare const resolveOptions: <InlineCSS extends boolean = boolean>(options: StreamPluginOptions<InlineCSS>, isClient: boolean) => {
    type: "success";
    userOptions: ResolvedUserOptions<InlineCSS>;
} | {
    type: "error";
    error: Error;
};
//# sourceMappingURL=resolveOptions.d.ts.map