import React from "react"; export interface INotionToolbarButtonProps { active?: boolean; onClick?: React.MouseEventHandler; children?: React.ReactNode; tooltip?: string; } declare function NotionToolbarButton(props: INotionToolbarButtonProps): React.ReactElement; declare namespace NotionToolbarButton { var displayName: string; } export { NotionToolbarButton };