import { SvelteComponentTyped } from "svelte";
import type { ConnectionsWrapperProp } from "../types";
declare const __propDef: {
    props: {
        urls: ConnectionsWrapperProp["urls"];
        successCallback?: ConnectionsWrapperProp["successCallback"];
        title?: ConnectionsWrapperProp["title"];
        classNames?: ConnectionsWrapperProp["classNames"];
        componentProps: ConnectionsWrapperProp["componentProps"];
        defaults?: ConnectionsWrapperProp["defaults"];
        errorCallback?: ConnectionsWrapperProp["errorCallback"];
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
export type IndexProps = typeof __propDef.props;
export type IndexEvents = typeof __propDef.events;
export type IndexSlots = typeof __propDef.slots;
export default class Index extends SvelteComponentTyped<IndexProps, IndexEvents, IndexSlots> {
}
export {};
