import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { style?: string; primaryColor?: string; secondaryColor?: string; }; events: { click: MouseEvent; } & { [evt: string]: CustomEvent; }; slots: {}; }; export declare type SoundTwoToneProps = typeof __propDef.props; export declare type SoundTwoToneEvents = typeof __propDef.events; export declare type SoundTwoToneSlots = typeof __propDef.slots; export default class SoundTwoTone extends SvelteComponentTyped { } export {};