import type { ComponentProps, FC } from 'react'; export type BlockProps = ComponentProps<'div'> & { className?: string; centered?: boolean; container?: boolean; fullWidth?: boolean; fullHeight?: boolean; dataTestId?: string; }; export declare const Block: FC;