import { SvelteComponent } from "svelte";
import type { ISimpleButtonProps } from './FashionButton.js';
declare const __propDef: {
    props: {
        [x: string]: any;
        props?: ISimpleButtonProps | undefined;
        buttonFocus?: (() => unknown) | undefined;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {
        prefix: {
            slot: string;
        };
        suffix: {
            slot: string;
        };
        default: {};
        loader: {
            slot: string;
        };
    };
};
export type FashionButtonProps = typeof __propDef.props;
export type FashionButtonEvents = typeof __propDef.events;
export type FashionButtonSlots = typeof __propDef.slots;
export default class FashionButton extends SvelteComponent<FashionButtonProps, FashionButtonEvents, FashionButtonSlots> {
}
export {};
