import { DOMProps } from '../../core/types/dom.js'; import { WithChildren } from '../../core/types/with-children.js'; /** * @public */ export interface InformationContentProps extends DOMProps, WithChildren { } /** * The content of the InformationOverlay. * @public */ export declare const Content: { ({ children, id: propId }: InformationContentProps): import("react/jsx-runtime").JSX.Element; displayName: string; };