/** @typedef {typeof __propDef.props}  SiApplepayProps */
/** @typedef {typeof __propDef.events}  SiApplepayEvents */
/** @typedef {typeof __propDef.slots}  SiApplepaySlots */
export default class SiApplepay extends SvelteComponent<{
    color?: string | undefined;
    size?: number | undefined;
    title?: string | undefined;
}, {
    [evt: string]: CustomEvent<any>;
}, {}> {
}
export type SiApplepayProps = typeof __propDef.props;
export type SiApplepayEvents = typeof __propDef.events;
export type SiApplepaySlots = typeof __propDef.slots;
import { SvelteComponent } from "svelte";
declare const __propDef: {
    props: {
        color?: string | undefined;
        size?: number | undefined;
        title?: string | undefined;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
export {};
