import type { HTMLAttributes } from 'svelte/elements';
import type { LoaderszOrbOptions } from '../core/types.js';
/** Attributes accepted by `` in a Svelte template. */
export type LoaderszSvelteAttributes = HTMLAttributes & LoaderszOrbOptions & {
'aria-label'?: string;
'force-motion'?: boolean | '';
'particle-radius'?: number;
};
declare module 'svelte/elements' {
interface SvelteHTMLElements {
'loadersz-loader': LoaderszSvelteAttributes;
}
}
//# sourceMappingURL=svelte.d.ts.map