import { TextBaseProps } from '../base/textBase'; /** * Props for P. * Extends TextBaseProps except component. * * @category Typography */ export type PProps = Omit; /** * P semantic paragraph. * Renders native p element. * * @function * @param props - Typography props. * * @category Typography */ export declare const P: import('react').ForwardRefExoticComponent>;