import { default as React } from 'react';
import { TypographyTheme } from './TypographyTheme';
export interface PProps extends React.HTMLAttributes<HTMLParagraphElement> {
    /**
     * Theme for Typography.
     */
    theme?: TypographyTheme;
}
export declare const P: React.ForwardRefExoticComponent<PProps & React.RefAttributes<HTMLParagraphElement>>;
