File size: 751 Bytes
bc20498
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/// <reference types=".pnpm/[email protected]/node_modules/svelte" />
import { SvelteComponentTyped } from "svelte";
import type { ControlButtonProps } from './types';
declare const __propDef: {
    props: ControlButtonProps;
    events: {
        click: MouseEvent;
    } & {
        [evt: string]: CustomEvent<any>;
    };
    slots: {
        default: {
            class: string;
        };
    };
};
type ControlButtonProps_ = typeof __propDef.props;
export { ControlButtonProps_ as ControlButtonProps };
export type ControlButtonEvents = typeof __propDef.events;
export type ControlButtonSlots = typeof __propDef.slots;
export default class ControlButton extends SvelteComponentTyped<ControlButtonProps_, ControlButtonEvents, ControlButtonSlots> {
}