import { SvelteComponentTyped } from "svelte";
import { ConfirmationPromptProps } from "../types";
declare const __propDef: {
    props: {
        promptMessage: ConfirmationPromptProps["promptMessage"];
        buttonNames?: ConfirmationPromptProps["buttonNames"];
        ctoaVariant: ConfirmationPromptProps["ctoaVariant"];
        confirmationCallback: ConfirmationPromptProps["confirmationCallback"];
        classNames?: ConfirmationPromptProps["classNames"];
        cancelCallback: ConfirmationPromptProps["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 {};
