import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
    props: {
        size?: number | undefined;
        color?: string | undefined;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
export type ContactProps = typeof __propDef.props;
export type ContactEvents = typeof __propDef.events;
export type ContactSlots = typeof __propDef.slots;
export default class Contact extends SvelteComponentTyped<ContactProps, ContactEvents, ContactSlots> {
}
export {};
