import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { languagesPath?: string | undefined; useMinified?: boolean | undefined; autoHighlightAll?: boolean | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export declare type AutoloaderProps = typeof __propDef.props; export declare type AutoloaderEvents = typeof __propDef.events; export declare type AutoloaderSlots = typeof __propDef.slots; export default class Autoloader extends SvelteComponentTyped { } export {};