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