import { type TextProps } from './Text';
interface BlockProps extends TextProps {
    width?: number | undefined;
    align?: 'left' | 'center' | 'right';
    children: any;
}
export default function Block({ width, align, children, ...props }: BlockProps): any;
export {};
