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