@base-ui-components/react
Version:
Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.
15 lines • 699 B
TypeScript
import * as React from 'react';
import type { BaseUIComponentProps } from "../../utils/types.js";
/**
* A paragraph with additional information about the popover.
* Renders a `<p>` element.
*
* Documentation: [Base UI Popover](https://base-ui.com/react/components/popover)
*/
export declare const PopoverDescription: React.ForwardRefExoticComponent<PopoverDescriptionProps & React.RefAttributes<HTMLParagraphElement>>;
export interface PopoverDescriptionState {}
export interface PopoverDescriptionProps extends BaseUIComponentProps<'p', PopoverDescription.State> {}
export declare namespace PopoverDescription {
type State = PopoverDescriptionState;
type Props = PopoverDescriptionProps;
}