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