import React, { ReactNode } from 'react';
import { TextType } from "../text";
export type Props = {
    children: ReactNode;
    className?: string;
    size?: 'sm' | 'md' | 'lg';
    type?: TextType;
    upperCase?: boolean;
    as?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
    color?: string;
    style?: React.CSSProperties;
};
declare const BorderHeading: ({ style, children, className, size, type, upperCase, as, color, }: Props) => React.JSX.Element;
export { BorderHeading };
