/** @typedef {typeof __propDef.props}  SiAmazoncognitoProps */
/** @typedef {typeof __propDef.events}  SiAmazoncognitoEvents */
/** @typedef {typeof __propDef.slots}  SiAmazoncognitoSlots */
export default class SiAmazoncognito extends SvelteComponent<{
    color?: string | undefined;
    size?: number | undefined;
    title?: string | undefined;
}, {
    [evt: string]: CustomEvent<any>;
}, {}> {
}
export type SiAmazoncognitoProps = typeof __propDef.props;
export type SiAmazoncognitoEvents = typeof __propDef.events;
export type SiAmazoncognitoSlots = 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 {};
