import { SvelteComponentTyped } from "svelte";
import type { EditOIDCConnectionProps } from "../../types";
declare const __propDef: {
    props: {
        errorCallback?: EditOIDCConnectionProps["errorCallback"];
        variant: EditOIDCConnectionProps["variant"];
        classNames?: EditOIDCConnectionProps["classNames"];
        excludeFields?: EditOIDCConnectionProps["excludeFields"];
        urls: EditOIDCConnectionProps["urls"];
        successCallback?: EditOIDCConnectionProps["successCallback"];
        displayHeader?: EditOIDCConnectionProps["displayHeader"];
        displayInfo?: EditOIDCConnectionProps["displayInfo"];
        cancelCallback?: EditOIDCConnectionProps["cancelCallback"];
    };
    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 {};
