import type { ExtractorFn } from "tailwindcss/types/config"; type ExtractorOptions = { separator?: string; prefix?: string; }; /** * Tailwind's default extractor, with small tweaks to support the ~ modifier. */ declare function extract(content: string): ReturnType; declare function extract(options?: ExtractorOptions): ExtractorFn; declare namespace extract { } export default extract;