import { SvelteComponentTyped } from "svelte"; import type { IconProps } from '../types.js'; declare const __propDef: { props: IconProps; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export type BlindProps = typeof __propDef.props; export type BlindEvents = typeof __propDef.events; export type BlindSlots = typeof __propDef.slots; export default class Blind extends SvelteComponentTyped { } export {};