import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; image: string; title: string; description: string; label: string; id: string | number; isDefault?: boolean; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export declare type LayoutCardVideoProps = typeof __propDef.props; export declare type LayoutCardVideoEvents = typeof __propDef.events; export declare type LayoutCardVideoSlots = typeof __propDef.slots; export default class LayoutCardVideo extends SvelteComponentTyped { } export {};