import React, { ElementType, PropsWithChildren } from "react"; import { ChangeLogOptions } from "../../makes"; export type CannyChangelogProps = PropsWithChildren<{ component?: ElementType; className?: string; } & Partial> & { [prop: string]: any; }>; export declare const CannyChangelog: React.FC;