import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; }; events: { [evt: string]: CustomEvent; }; slots: { icon: {}; default: {}; }; }; export declare type TrailingProps = typeof __propDef.props; export declare type TrailingEvents = typeof __propDef.events; export declare type TrailingSlots = typeof __propDef.slots; export default class Trailing extends SvelteComponentTyped { } export {};