import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; gridCols?: string | undefined; gridGap?: string | undefined; rounded?: string | undefined; background?: string | undefined; text?: string | undefined; color?: string | undefined; padding?: string | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export declare type LogoCloudProps = typeof __propDef.props; export declare type LogoCloudEvents = typeof __propDef.events; export declare type LogoCloudSlots = typeof __propDef.slots; export default class LogoCloud extends SvelteComponentTyped { } export {};