import { SvelteComponentTyped } from "svelte"; import type { TSize } from '../interfaces/size'; import type { TType } from '../interfaces/TTypes'; declare const __propDef: { props: { [x: string]: any; theme?: TType; size?: TSize; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export declare type DotProps = typeof __propDef.props; export declare type DotEvents = typeof __propDef.events; export declare type DotSlots = typeof __propDef.slots; export default class Dot extends SvelteComponentTyped { } export {};