import { SvelteComponent } from "svelte"; export declare const paths: { mdiCursorDefault: string; mdiCameraOutline: string; }; export type Icons = keyof typeof paths; declare const __propDef: { props: { [x: string]: any; name: Icons; size?: string | undefined; viewBox?: string | undefined; flip?: string; rotate?: number; }; events: { [evt: string]: CustomEvent; }; slots: {}; exports?: undefined; bindings?: undefined; }; export type IconProps = typeof __propDef.props; export type IconEvents = typeof __propDef.events; export type IconSlots = typeof __propDef.slots; export default class Icon extends SvelteComponent { } export {};