import { BaseComponentWithTheme } from '../../utils';
import type { TextAlign, TextColor, BreakpointCustomizable, TextSize, TextTag, Theme, TextWeight } from '../types';
import * as i0 from "@angular/core";
export declare class PText extends BaseComponentWithTheme {
    align?: TextAlign;
    color?: TextColor;
    ellipsis?: boolean;
    size?: BreakpointCustomizable<TextSize>;
    tag?: TextTag;
    theme?: Theme;
    weight?: TextWeight;
    static ɵfac: i0.ɵɵFactoryDeclaration<PText, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<PText, "p-text,[p-text]", never, { "align": { "alias": "align"; "required": false; }; "color": { "alias": "color"; "required": false; }; "ellipsis": { "alias": "ellipsis"; "required": false; }; "size": { "alias": "size"; "required": false; }; "tag": { "alias": "tag"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "weight": { "alias": "weight"; "required": false; }; }, {}, never, ["*"], false, never>;
}