import { ReactNode, HTMLProps } from 'react';
import './text.stye.scss';
export interface TextProps extends Omit, 'size'> {
/**
* Sets the type of element
*/
as?: 'span' | 'p' | 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
/**
* Sets the block of the component
*/
block?: boolean;
/**
* Sets the children of element
*/
children?: ReactNode;
/**
* Sets the className of the element
*/
size?: 'xs' | 'sm' | 'md' | 'lg' | 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
}
export declare const Text: import("react").NamedExoticComponent;