import { SvelteComponent } from "svelte"; declare const __propDef: { props: { height?: any; width?: any; strokeColour?: any; backgroundStrokeColour?: any; strokeWeight?: any; completion?: number; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type LoaderCircleProps = typeof __propDef.props; export type LoaderCircleEvents = typeof __propDef.events; export type LoaderCircleSlots = typeof __propDef.slots; export default class LoaderCircle extends SvelteComponent { } export {};