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