import { ComponentProps } from 'react'; type Props = { type?: keyof typeof types; } & ComponentProps<'p'>; declare const types: { small: string; lead: string; }; export default function P({ type, ...props }: Props): import("react/jsx-runtime").JSX.Element; export {};