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