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