import { SvelteComponentTyped } from "svelte"; import { IconEnum } from '../..'; import { Direction } from '../../../enums'; declare const __propDef: { props: { /** * The icon to display * @type {IconEnum} */ icon: IconEnum; /** * Title to display */ title: string; /** * Description to display */ description: string; /** * Content direction */ direction?: Direction | undefined; /** * Whether to use dark mode */ darkmode?: boolean | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type IconContentProps = typeof __propDef.props; export type IconContentEvents = typeof __propDef.events; export type IconContentSlots = typeof __propDef.slots; export default class IconContent extends SvelteComponentTyped { } export {};