import { IBlock } from '../components'; import { IBlockAttributes } from './types'; interface LiteYoutube { videoid: string; videotitle: string; playlistid: string; videoplay: string; videoStartAt: number; posterquality: string; posterloading: string; nocookie: boolean; autoload: boolean; params: string; } declare global { namespace JSX { interface IntrinsicElements { ['lite-youtube']: Partial; } } } export interface YoutubeLiteBlockProps extends IBlockAttributes { src: string; title: string; params?: string; } export interface IYoutubeLiteBlock extends IBlock { } /** * Renders Youtube embeds with lite-youtube-embed * * @param {import('@headstartwp/core').BlockDef} props The Block props * * @returns */ export declare function YoutubeLiteBlock({ domNode }: Omit): import("react/jsx-runtime").JSX.Element; export declare namespace YoutubeLiteBlock { var test: (node: any) => boolean; } export {};