/* eslint-disable */
import type { FunctionComponent } from 'react'
import type { PProperties } from '../patterns/p';
import type { HTMLCerberusProps } from '../types/jsx';
import type { DistributiveOmit } from '../types/system-types';

export interface PProps extends PProperties, DistributiveOmit<HTMLCerberusProps<'p'>, keyof PProperties > {}

/**
 * A p element


 */
export declare const P: FunctionComponent<PProps>