import React from "react"; export interface NotionLikeDropdownMenuProps { children?: React.ReactNode; } declare function NotionLikeDropdownMenu(props: NotionLikeDropdownMenuProps): React.ReactElement; declare namespace NotionLikeDropdownMenu { var displayName: string; } export interface NotionLikeDropdownMenuItemProps { active?: boolean; onClick?: React.MouseEventHandler; children?: React.ReactNode; } declare function NotionLikeDropdownMenuItem(props: NotionLikeDropdownMenuItemProps): React.ReactElement; declare namespace NotionLikeDropdownMenuItem { var displayName: string; } export { NotionLikeDropdownMenu, NotionLikeDropdownMenuItem, };