/** @typedef {typeof __propDef.props} FFmpegProps */ /** @typedef {typeof __propDef.events} FFmpegEvents */ /** @typedef {typeof __propDef.slots} FFmpegSlots */ /** * [Go to docs](https://svelte-file-icons.codewithshin.com/) * ## Props * @prop export let size = ctx.size || '24'; * @prop export let role = ctx.role || 'img'; * @prop export let color = ctx.color || 'currentColor'; * @prop export let ariaLabel = 'FFmpeg'; */ export default class FFmpeg extends SvelteComponentTyped<{ [x: string]: any; size?: any; role?: any; color?: any; ariaLabel?: string | undefined; }, { click: MouseEvent; keydown: KeyboardEvent; keyup: KeyboardEvent; focus: FocusEvent; blur: FocusEvent; mouseenter: MouseEvent; mouseleave: MouseEvent; mouseover: MouseEvent; mouseout: MouseEvent; } & { [evt: string]: CustomEvent; }, {}> { } export type FFmpegProps = typeof __propDef.props; export type FFmpegEvents = typeof __propDef.events; export type FFmpegSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; size?: any; role?: any; color?: any; ariaLabel?: string | undefined; }; events: { click: MouseEvent; keydown: KeyboardEvent; keyup: KeyboardEvent; focus: FocusEvent; blur: FocusEvent; mouseenter: MouseEvent; mouseleave: MouseEvent; mouseover: MouseEvent; mouseout: MouseEvent; } & { [evt: string]: CustomEvent; }; slots: {}; }; export {};