import type { Pail } from "@visulima/pail";
import type { PluginContext } from "rollup";
import type { SassApiType, SassLoaderContext, SassLoaderOptions } from "../types.d.cts";
/**
 * Derives the sass options from the loader context and normalizes its values with sane defaults.
 */
declare const getSassOptions: (loaderContext: SassLoaderContext, logger: Pail, warn: PluginContext["warn"], options: SassLoaderOptions, content: string, useSourceMap: boolean, apiType: SassApiType) => Promise<SassLoaderOptions>;
export = getSassOptions;
