import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
    props: {
        [x: string]: any;
        length?: null;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {
        default: {};
    };
};
export type TotalProps = typeof __propDef.props;
export type TotalEvents = typeof __propDef.events;
export type TotalSlots = typeof __propDef.slots;
export default class Total extends SvelteComponentTyped<TotalProps, TotalEvents, TotalSlots> {
}
export {};
