import { SvelteComponentTyped } from "svelte"; import { type ActionArray } from '../../utils/useActions'; declare const __propDef: { props: { [x: string]: any; use?: ActionArray | undefined; type?: "flip" | "rotate" | undefined; loading?: false | true | undefined; swapped?: false | true | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { icon1: {}; icon2: {}; }; }; export declare type SwapProps = typeof __propDef.props; export declare type SwapEvents = typeof __propDef.events; export declare type SwapSlots = typeof __propDef.slots; export default class Swap extends SvelteComponentTyped { } export {};