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