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