import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
    props: {
        url?: string | undefined;
        classes?: Partial<{
            /**
             * Class names to apply to the root element
             */
            root: string;
            /**
             * Class names to apply to the root element with the light theme
             */
            light: string;
            /**
             * Class names to apply to the root element with the dark theme
             */
            dark: string;
            /**
             * Class names to apply to the link element
             */
            link: string;
            /**
             * Class names to apply to the SVG logo
             */
            logo: string;
        }> | undefined;
        theme?: "light" | "dark" | undefined;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
export type PoweredByProps = typeof __propDef.props;
export type PoweredByEvents = typeof __propDef.events;
export type PoweredBySlots = typeof __propDef.slots;
export default class PoweredBy extends SvelteComponentTyped<PoweredByProps, PoweredByEvents, PoweredBySlots> {
}
export {};
