import { Component, JSXElement } from 'solid-js';
import { Colors } from '../theme-provider/theme';
export interface ParagraphProps {
    type?: keyof Colors;
    size?: 1 | 2;
    weight?: 'normal' | 'bold';
    children: JSXElement;
}
export declare const Paragraph: Component<ParagraphProps>;
