export declare type NodeButtonProps = { text: string; color?: string; background?: string; onClick?: () => void; }; declare const NodeButton: ({ text, color, background, onClick }: NodeButtonProps) => JSX.Element; export default NodeButton;