import { IBlock } from '../components'; import { IBlockAttributes } from './types'; export interface CoverBlockProps extends IBlockAttributes { overlayColor: string; hasParallax: boolean; isRepeated: boolean; id: number; dimRatio: number; isDark: boolean; url: string; minHeight: number; focalPoint?: { x: string | number; y: string | number; }; } export interface ICoverBlock extends IBlock { } export declare function CoverBlock({ domNode: node, children, component: Component, style, }: ICoverBlock): import("react/jsx-runtime").JSX.Element; /** * @internal */ export declare namespace CoverBlock { const defaultProps: { test: (node: any) => boolean; /** * Exclude all direct children except the paragraph inner block * * @param node The dom node * @returns */ exclude: (node: any) => any; }; }