import type { LinkProps } from "../../types/notion/common/link.js";
import type { AnnotationItemMapper } from "../../types/notion/mapper/annotationItem.js";
import type { PropertyItemMapper } from "../../types/notion/mapper/propertyItem.js";
import type { RichTextItemMapper } from "../../types/notion/mapper/richTextItem.js";
import type { PropertyItemType } from "../../types/notion/property/properties.js";
import type { FC } from "react";
type Props = {
    value: PropertyItemType;
    propertyMapper?: PropertyItemMapper;
    richTextItemMapper?: RichTextItemMapper;
    annotationMapper?: AnnotationItemMapper;
    LinkComponent?: React.ComponentType<LinkProps>;
};
export declare const PropertyItem: FC<Props>;
export {};
//# sourceMappingURL=PropertyItem.d.ts.map