import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
    props: {
        [x: string]: any;
        info?: string;
        show?: boolean;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {
        default: {};
    };
};
export type SystemInfoProps = typeof __propDef.props;
export type SystemInfoEvents = typeof __propDef.events;
export type SystemInfoSlots = typeof __propDef.slots;
export default class SystemInfo extends SvelteComponentTyped<SystemInfoProps, SystemInfoEvents, SystemInfoSlots> {
}
export {};
