import type { HTMLAttributes, PropType } from 'vue';
import type { Direction } from '../config-provider';
export interface TypographyProps extends HTMLAttributes {
direction?: Direction;
prefixCls?: string;
}
export interface InternalTypographyProps extends TypographyProps {
component?: string;
}
export declare const typographyProps: () => {
prefixCls: StringConstructor;
direction: PropType;
component: StringConstructor;
};
declare const Typography: import("vue").DefineComponent, {
class?: any;
inlist?: any;
}>;
export default Typography;