/// <reference types="react" />
import { IdProps } from "./interface/IdProps";
import { StyleProps } from "./interface/StyleProps";
export interface BlockTextProps extends IdProps, StyleProps, React.PropsWithChildren<any> {
    shadow?: boolean;
    backgroundColor?: string;
}
export declare const BlockText: ({ id, style, children, className, shadow, backgroundColor }: BlockTextProps) => import("react/jsx-runtime").JSX.Element;
