import React from 'react'; import { ProgressBarProps } from '../../components/ProgressBar'; interface BlockButtonProps { className?: string; isButton?: boolean; url?: string; name?: string; } interface ButtonBlockProps { title?: string; text?: string; blockProgressBar?: ProgressBarProps; button?: BlockButtonProps; isLight?: boolean; positionSticky?: string; } export declare const Block: React.FC; export {};