/// interface ButtonProps { onClick: () => void; } declare function EditButton({ onClick }: ButtonProps): JSX.Element; export { EditButton };