import React from 'react'; import { TypographyProps } from './typography'; export declare const BaseTypes: ["second", "success", "warning", "danger", "assist"]; export declare type BaseType = typeof BaseTypes[number]; export interface BlockProps extends TypographyProps { title?: string; type?: BaseType; disabled?: boolean; code?: boolean; mark?: boolean; underline?: boolean; delete?: boolean; strong?: boolean; keyboard?: boolean; italic?: boolean; } interface InternalBlockProps extends BlockProps { component: string; } declare const Base: React.ForwardRefExoticComponent>; export default Base;