import { SvelteComponentTyped } from "svelte"; import type { IListDataItem } from '../interfaces/IListDataItem'; declare const __propDef: { props: { [x: string]: any; image: string; title: string; description: string; list?: IListDataItem[]; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export declare type VideoPremiumProps = typeof __propDef.props; export declare type VideoPremiumEvents = typeof __propDef.events; export declare type VideoPremiumSlots = typeof __propDef.slots; export default class VideoPremium extends SvelteComponentTyped { } export {};