import { FilterPattern } from "unplugin";
import { TransformOptions } from "lightningcss";

//#region src/core/options.d.ts
type Options = {
  include?: FilterPattern;
  exclude?: FilterPattern;
  enforce?: "pre" | "post" | undefined;
  options?: Omit<TransformOptions<any>, "code" | "filename">;
  /**
  * Whether to export the transformed CSS as a default string export.
  * @default false
  */
  asString?: boolean;
};
//#endregion
export { Options as t };