import { MouseEventHandler } from "react"; export interface ButtonProps { type: 'primary' | 'secondary' | 'error'; text: string; onClick: MouseEventHandler; content: ButtonContent | null; } export interface ButtonContent { text: string; type: string; }