import type { HTMLAttributes } from 'svelte/elements';
interface Props extends Omit<HTMLAttributes<SVGElement>, 'width' | 'height'> {
    scale?: number;
}
declare const SeleniteLogo: import("svelte").Component<Props, {}, "">;
type SeleniteLogo = ReturnType<typeof SeleniteLogo>;
export default SeleniteLogo;
