declare module 'sveltekit-autoimport' { import { MarkupPreprocessor } from 'svelte/types/compiler/preprocess/types'; type AutoImportArgs = { include?: string[]; exclude?: string[]; module?: Record; mapping?: unknown; components?: (string | { directory: string; flat?: boolean; prefix?: string })[]; }; export default function (args: AutoImportArgs): { markup: MarkupPreprocessor }; }