import { type TextProps } from './Text';
import React from 'react';
interface FrameProps extends TextProps {
    children: any;
    type?: 'single' | 'double' | 'rounded';
    height?: number;
    width?: number;
}
export default function Frame({ children, type, height: _height, width: _width, ...props }: FrameProps): React.JSX.Element;
export {};
