import React from 'react';
import { BlockVariant } from './types';
export interface BlockProps extends React.PropsWithChildren {
    className?: string;
    title?: string;
    toolbar?: React.ReactNode;
    background?: React.ReactNode;
    fullHeight?: boolean;
    variant?: BlockVariant;
}
export declare const Block: React.FC<BlockProps>;
export * from './types';
export * from './styled';
