import type { HTMLAttributes } from 'vue';
import type { Direction } from '../config-provider';
export interface TypographyProps extends HTMLAttributes {
    direction?: Direction;
    prefixCls?: string;
}
export interface InternalTypographyProps extends TypographyProps {
    component?: string;
}
declare const Typography: import("vue").DefineComponent<InternalTypographyProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<InternalTypographyProps>, {
    class: any;
    inlist: any;
}>;
export default Typography;
