import { SvelteComponentTyped } from "svelte"; import { type Anchor, type CrossOrigin, type Decoding, type Mode, type Placeholder, type State, type VideoOptions } from "./_utils.js"; declare const __propDef: { props: { alt?: string; anchor?: Anchor; bot?: string; class?: string; crossorigin?: CrossOrigin; decoding?: Decoding; focus?: string; intrinsic?: string; media?: HTMLElement; mediaTag?: string; mode?: Mode; eager?: boolean; placeholder?: Placeholder; position?: string; preTransform?: string; ratio?: number | string; referrerpolicy?: ReferrerPolicy; refit?: boolean | string; src?: string; step?: number | string; state?: State; title?: string; transition?: boolean | string; transitionDelay?: string; transitionDuration?: string; transitionTimingFunction?: string; videoOptions?: VideoOptions; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type TwicMediaProps = typeof __propDef.props; export type TwicMediaEvents = typeof __propDef.events; export type TwicMediaSlots = typeof __propDef.slots; export default class TwicMedia extends SvelteComponentTyped { } export {};