import { SvelteComponent } from "svelte";
import type { linkType } from '../../models/Models';
declare const __propDef: {
    props: {
        links?: linkType[];
        note: string;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
export type DocsProps = typeof __propDef.props;
export type DocsEvents = typeof __propDef.events;
export type DocsSlots = typeof __propDef.slots;
export default class Docs extends SvelteComponent<DocsProps, DocsEvents, DocsSlots> {
}
export {};
