import { SvelteComponent } from "svelte";
declare const __propDef: {
    props: Record<string, never>;
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
export type OldShowcaseProps = typeof __propDef.props;
export type OldShowcaseEvents = typeof __propDef.events;
export type OldShowcaseSlots = typeof __propDef.slots;
export default class OldShowcase extends SvelteComponent<OldShowcaseProps, OldShowcaseEvents, OldShowcaseSlots> {
}
export {};
