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