import { SvelteComponent } from "svelte"; declare const __propDef: { props: { tick: any; size?: number | undefined; fontFamily?: string | undefined; fontSize?: string | undefined; fontSizeAdjust?: string | undefined; fontStretch?: string | undefined; fontStyle?: string | undefined; fontVariant?: string | undefined; fontWeight?: string | undefined; stroke?: string | undefined; strokeWidth?: string | undefined; strokeOpacity?: string | undefined; strokeLinecap?: 'inherit' | 'round' | 'butt' | 'square' | null | undefined; strokeLinejoin?: 'inherit' | 'round' | 'miter' | 'bevel' | null | undefined; strokeDasharray?: string | undefined; strokeDashoffset?: string | undefined; strokeMiterlimit?: string | undefined; fill?: string | undefined; fillOpacity?: string | undefined; textAnchor?: 'start' | 'middle' | 'end' | undefined; x1?: number | undefined; x2?: number | undefined; y1?: number | undefined; y2?: number | undefined; dx?: number | undefined; dy?: number | undefined; }; events: { keypress: KeyboardEvent; introstart: MouseEvent | UIEvent | Event | FocusEvent | PointerEvent | AnimationEvent | InputEvent | CompositionEvent | ClipboardEvent | DragEvent | ErrorEvent | FormDataEvent | KeyboardEvent | ProgressEvent | SecurityPolicyViolationEvent | SubmitEvent | TouchEvent | TransitionEvent | WheelEvent; introend: MouseEvent | UIEvent | Event | FocusEvent | PointerEvent | AnimationEvent | InputEvent | CompositionEvent | ClipboardEvent | DragEvent | ErrorEvent | FormDataEvent | KeyboardEvent | ProgressEvent | SecurityPolicyViolationEvent | SubmitEvent | TouchEvent | TransitionEvent | WheelEvent; outrostart: MouseEvent | UIEvent | Event | FocusEvent | PointerEvent | AnimationEvent | InputEvent | CompositionEvent | ClipboardEvent | DragEvent | ErrorEvent | FormDataEvent | KeyboardEvent | ProgressEvent | SecurityPolicyViolationEvent | SubmitEvent | TouchEvent | TransitionEvent | WheelEvent; outroend: MouseEvent | UIEvent | Event | FocusEvent | PointerEvent | AnimationEvent | InputEvent | CompositionEvent | ClipboardEvent | DragEvent | ErrorEvent | FormDataEvent | KeyboardEvent | ProgressEvent | SecurityPolicyViolationEvent | SubmitEvent | TouchEvent | TransitionEvent | WheelEvent; click: MouseEvent; pointerover: PointerEvent; pointerenter: PointerEvent; pointerleave: PointerEvent; } & { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export type TickProps = typeof __propDef.props; export type TickEvents = typeof __propDef.events; export type TickSlots = typeof __propDef.slots; export default class Tick extends SvelteComponent { } export {};